DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomGlobal Class / SOPClassGroup Method
The group requested
Example

In This Topic
    SOPClassGroup Method
    In This Topic
    Groups of SOP classes that use the same default Transfer Syntaxes
    Syntax
    'Declaration
     
    
    Public Shared Function SOPClassGroup( _
       ByVal Group As SOPClassGroups _
    ) As System.Collections.Generic.List(Of String)
    public static System.Collections.Generic.List<string> SOPClassGroup( 
       SOPClassGroups Group
    )

    Parameters

    Group
    The group requested

    Return Value

    The list of SOP classes to which the selected group applies
    Remarks

    These groups 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 offered and accepted transfer syntaxes associated with the group see:

    Example
    SOPClassGroups group = SOPClassGroups.Images8Bit;
    var sopClasses = DicomGlobal.SOPClassGroup(group);
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also