DicomObjects.NET10 Documentation
DicomObjects.DicomCodecs Namespace / CodecGlobal Class / AvailableTransferSyntaxes Method
Include only those TrannsferSyntax UIDs into which data can be compressed
Include only those TrannsferSyntax UIDs from which data can be decompressed



In This Topic
    AvailableTransferSyntaxes Method
    In This Topic
    Contains a list of transfer syntaxes supported by DicomObjects.NET
    Syntax
    'Declaration
     
    
    Public Shared Function AvailableTransferSyntaxes( _
       ByVal IncludeOnlyCompress As Boolean, _
       ByVal IncludeOnlyDecompress As Boolean _
    ) As String()
    'Usage
     
    
    Dim IncludeOnlyCompress As Boolean
    Dim IncludeOnlyDecompress As Boolean
    Dim value() As String
     
    value = CodecGlobal.AvailableTransferSyntaxes(IncludeOnlyCompress, IncludeOnlyDecompress)
    public static string[] AvailableTransferSyntaxes( 
       bool IncludeOnlyCompress,
       bool IncludeOnlyDecompress
    )
    public:
    static array<String^>^ AvailableTransferSyntaxes( 
       bool IncludeOnlyCompress,
       bool IncludeOnlyDecompress
    ) 

    Parameters

    IncludeOnlyCompress
    Include only those TrannsferSyntax UIDs into which data can be compressed
    IncludeOnlyDecompress
    Include only those TrannsferSyntax UIDs from which data can be decompressed

    Return Value

    An array containing all the matching transfer syntax UIDs
    Remarks
    This property contains a list of Compression Transfer Syntaxes supported by DicomObjects.NET as currently being run. If both parameters are true, then only those codecs which can both compress and decompress are returned.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also