DicomObjects.NET.8.48 Documentation
DicomObjects.DicomCodecs Namespace / CodecFactory Class / Importer Method
The format of the data being decompressed/imported






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

    Parameters

    Format
    The format of the data being decompressed/imported

    Return Value

    The new Importer object
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also