DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomContext Class / OfferedTS Property






In This Topic
    OfferedTS Property
    In This Topic
    The list of transfer syntaxes offered in a presentation context
    Syntax
    'Declaration
     
    
    Public Property OfferedTS As System.String()
    'Usage
     
    
    Dim instance As DicomContext
    Dim value() As System.String
     
    instance.OfferedTS = value
     
    value = instance.OfferedTS
    public System.string[] OfferedTS {get; set;}
    public read-write property OfferedTS: System.array of String; 
    public function get,set OfferedTS : System.String[]
    public: __property System.string*[]* get_OfferedTS();
    public: __property void set_OfferedTS( 
       System.string*[][]* value
    );
    public:
    property System.array<String^>^ OfferedTS {
       System.array<String^>^ get();
       void set (    System.array<String^>^ value);
    }

    Property Value

    The list of transfer syntaxes offered
    Remarks

    This property holds the list of transfer syntaxes offered as part of association negotiation. As an SCU, it may be set up by a client program prior to calling Open. As an SCP, the values may be inspected during the AssociationRequest event in order to select which on to accept (by setting AcceptedTS).

    If not set explicitly by a client program, a default list is used, based on tghe current Transfer Syntax Negotiation settings.

    Whilst this property may be set to, or compared with full UID strings, use of symbolic constants is advised for better readability.

    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also