DicomObjects.NET.V8
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 String()
    'Usage
     
    Dim instance As DicomContext
    Dim value() As String
     
    instance.OfferedTS = value
     
    value = instance.OfferedTS
    public string[] OfferedTS {get; set;}
    public:
    property array<String^>^ OfferedTS {
       array<String^>^ get();
       void set (    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.0 or higher

    See Also