DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomGlobal Class / ClearOfferedTransferSyntaxes Method
The list of offered Transfer Syntaxes to clear
Example

In This Topic
    ClearOfferedTransferSyntaxes Method
    In This Topic
    Clear all offered Transfer Syntaxes from a group used to help control automatic acceptance of transfer syntaxes
    Syntax
    'Declaration
     
    
    Public Shared Sub ClearOfferedTransferSyntaxes( _
       ByVal Group As SOPClassGroups _
    ) 
    public static void ClearOfferedTransferSyntaxes( 
       SOPClassGroups Group
    )

    Parameters

    Group
    The list of offered Transfer Syntaxes 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 OfferedTransferSyntaxes

    See Also:

    Example
    SOPClassGroups group = SOPClassGroups.Images8Bit;
    DicomGlobal.ClearOfferedTransferSyntaxes(group);
                        
    var offeredTS = DicomGlobal.OfferedTransferSyntaxes(group); // now empty list
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also