DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomGlobal Class / FindGroups Method
The SOP class to be queried
Example

In This Topic
    FindGroups Method
    In This Topic
    Find to which groups a particular SOP class is currently assigned
    Syntax
    'Declaration
     
    
    Public Shared Function FindGroups( _
       ByVal UID As System.String _
    ) As System.Collections.Generic.List(Of SOPClassGroups)
    public static System.Collections.Generic.List<SOPClassGroups> FindGroups( 
       System.string UID
    )

    Parameters

    UID
    The SOP class to be queried

    Return Value

    The associated groups
    Remarks
    If no groups is found, then SOPClassGroups.Services is returned
    Example
    UID sop = SOPClasses.CT;
    var groups = DicomGlobal.FindGroups(sop); // E.g. CT is assigned to DicomObjects.Enums.SOPClassGroups.Images16Bit
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also