DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomGlobal Class / ClearSOPClassGroup Method
The group to clear
Example

In This Topic
    ClearSOPClassGroup Method
    In This Topic
    Clear all SOP classes from a group used to help control use of associated transfer syntaxes
    Syntax
    'Declaration
     
    
    Public Shared Sub ClearSOPClassGroup( _
       ByVal Group As SOPClassGroups _
    ) 
    public static void ClearSOPClassGroup( 
       SOPClassGroups Group
    )

    Parameters

    Group
    The group to clear
    Remarks

    The groups are pre-populated at initialization, but may be modified by the user

    For direct access to the underlying List of Strings to allow advanced usage see SOPClassGroup

    See Also:

    Example
    SOPClassGroups group = SOPClassGroups.Images8Bit;
    DicomGlobal.ClearSOPClassGroup(group);
                        
    // Example
    var sopClasses = DicomGlobal.SOPClassGroup(group); // now empty list
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also