DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomGlobal Class / AddToSOPClassGroup Method
The group to add the SOP class to
The SOP class to add

In This Topic
    AddToSOPClassGroup Method
    In This Topic
    Add a SOP class into a group used to help control use of associated transfer syntaxes
    Syntax
    'Declaration
     
    
    Public Shared Sub AddToSOPClassGroup( _
       ByVal Group As SOPClassGroups, _
       ByVal SOPClass As UID _
    ) 
    public static void AddToSOPClassGroup( 
       SOPClassGroups Group,
       UID SOPClass
    )

    Parameters

    Group
    The group to add the SOP class to
    SOPClass
    The SOP class to add
    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; UID ts = TransferSyntaxes.DeflatedExplicitVRLittleEndian; DicomGlobal.AddToSOPClassGroup(group, SOPClasses.ComputedRadiography);
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also