DicomObjects.NET.V8
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: .NET CLR 4.0 or higher

    See Also