DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomGlobal Class / OfferedTransferSyntaxes Method

The SOPClassGroups

Example

In This Topic
    OfferedTransferSyntaxes Method
    In This Topic
    List of Transfer Syntaxes offered by default for a group of SOP classes
    Syntax
    'Declaration
     
    
    Public Shared Function OfferedTransferSyntaxes( _
       ByVal Group As SOPClassGroups _
    ) As System.Collections.Generic.List(Of String)
    public static System.Collections.Generic.List<string> OfferedTransferSyntaxes( 
       SOPClassGroups Group
    )

    Parameters

    Group

    The SOPClassGroups

    Return Value

    The list of Transfer Syntaxes to be offered
    Remarks

    The list is pre-populated at initialization, but may be modified by the user

    This method is intended for advanced usage - for simpler methods see:

    To control the related SOP classes and accepted transfer syntaxes associated with the group see:

    Example
    SOPClassGroups group = SOPClassGroups.Images16Bit;
    var offeredTS = DicomGlobal.OfferedTransferSyntaxes(group);
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also