DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomGlobal Class / AcceptedTransferSyntaxes Method
The SOPClassGroups






In This Topic
    AcceptedTransferSyntaxes Method
    In This Topic
    List of Transfer Syntaxes accepted by default for a group of SOP classes
    Syntax
    'Declaration
     
    
    Public Shared Function AcceptedTransferSyntaxes( _
       ByVal Group As SOPClassGroups _
    ) As System.Collections.Generic.List(Of String)
    'Usage
     
    
    Dim Group As SOPClassGroups
    Dim value As System.Collections.Generic.List(Of String)
     
    value = DicomGlobal.AcceptedTransferSyntaxes(Group)
    public static System.Collections.Generic.List<string> AcceptedTransferSyntaxes( 
       SOPClassGroups Group
    )
    public function AcceptedTransferSyntaxes( 
        Group: SOPClassGroups
    ): System.Collections.Generic.List; static; 
    public static function AcceptedTransferSyntaxes( 
       Group : SOPClassGroups
    ) : System.Collections.Generic.List;
    public: static System.Collections.Generic.List<string*>* AcceptedTransferSyntaxes( 
       SOPClassGroups Group
    ) 
    public:
    static System.Collections.Generic.List<String^>^ AcceptedTransferSyntaxes( 
       SOPClassGroups Group
    ) 

    Parameters

    Group
    The SOPClassGroups

    Return Value

    A list of Transfer Syntaxes to be accepted
    Remarks

    The list is 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 related SOP classes and accepted transfer syntaxes associated with the group see:

    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also