DicomObjects.NET.8.48 Documentation
DicomObjects.DicomCodecs Namespace / CodecFactory Class / Decompressor Method
The transfer syntax of the data to be decompressed
The data to be decompressed
The DicomDataSet containing the data to be decompressed
The Frame number (as per DICOM rules, numbered from 1)






In This Topic
    Decompressor Method
    In This Topic
    Create a Decompressor object
    Syntax
    'Declaration
     
    
    Public MustOverride Function Decompressor( _
       ByVal TransferSyntax As System.String, _
       ByVal Data As System.IO.Stream, _
       ByVal DataSet As DicomDataSet, _
       ByVal Frame As System.Integer _
    ) As IDecompressor
    'Usage
     
    
    Dim instance As CodecFactory
    Dim TransferSyntax As System.String
    Dim Data As System.IO.Stream
    Dim DataSet As DicomDataSet
    Dim Frame As System.Integer
    Dim value As IDecompressor
     
    value = instance.Decompressor(TransferSyntax, Data, DataSet, Frame)
    public abstract IDecompressor Decompressor( 
       System.string TransferSyntax,
       System.IO.Stream Data,
       DicomDataSet DataSet,
       System.int Frame
    )
    public function Decompressor( 
        TransferSyntax: System.String;
        Data: System.IO.Stream;
        DataSet: DicomDataSet;
        Frame: System.Integer
    ): IDecompressor; abstract; 
    public __abstract function Decompressor( 
       TransferSyntax : System.String,
       Data : System.IO.Stream,
       DataSet : DicomDataSet,
       Frame : System.int
    ) : IDecompressor;
    public: abstract IDecompressor* Decompressor( 
       System.string* TransferSyntax,
       System.IO.Stream* Data,
       DicomDataSet* DataSet,
       System.int Frame
    ) 
    public:
    abstract IDecompressor^ Decompressor( 
       System.String^ TransferSyntax,
       System.IO.Stream^ Data,
       DicomDataSet^ DataSet,
       System.int Frame
    ) 

    Parameters

    TransferSyntax
    The transfer syntax of the data to be decompressed
    Data
    The data to be decompressed
    DataSet
    The DicomDataSet containing the data to be decompressed
    Frame
    The Frame number (as per DICOM rules, numbered from 1)

    Return Value

    The new Decompressor object
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also