DicomObjects.NET.8.48 Documentation
DicomObjects.DicomCodecs Namespace / CodecFactory Class / Compressor Method
The transfer syntax to be used for the compression






In This Topic
    Compressor Method
    In This Topic
    Create a Compressor object
    Syntax
    'Declaration
     
    
    Public MustOverride Function Compressor( _
       ByVal TransferSyntax As System.String _
    ) As ICompressor
    'Usage
     
    
    Dim instance As CodecFactory
    Dim TransferSyntax As System.String
    Dim value As ICompressor
     
    value = instance.Compressor(TransferSyntax)
    public abstract ICompressor Compressor( 
       System.string TransferSyntax
    )
    public function Compressor( 
        TransferSyntax: System.String
    ): ICompressor; abstract; 
    public __abstract function Compressor( 
       TransferSyntax : System.String
    ) : ICompressor;
    public: abstract ICompressor* Compressor( 
       System.string* TransferSyntax
    ) 
    public:
    abstract ICompressor^ Compressor( 
       System.String^ TransferSyntax
    ) 

    Parameters

    TransferSyntax
    The transfer syntax to be used for the compression

    Return Value

    The new Compressor object
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also