DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomAssociation Class / RequestingQuery Property






In This Topic
    RequestingQuery Property
    In This Topic
    Provides a linkage to the primary C-MOVE request.
    Syntax
    'Declaration
     
    
    Public Property RequestingQuery As QueryReceivedArgs
    'Usage
     
    
    Dim instance As DicomAssociation
    Dim value As QueryReceivedArgs
     
    instance.RequestingQuery = value
     
    value = instance.RequestingQuery
    public QueryReceivedArgs RequestingQuery {get; set;}
    public read-write property RequestingQuery: QueryReceivedArgs; 
    public function get,set RequestingQuery : QueryReceivedArgs
    public: __property QueryReceivedArgs* get_RequestingQuery();
    public: __property void set_RequestingQuery( 
       QueryReceivedArgs* value
    );
    public:
    property QueryReceivedArgs^ RequestingQuery {
       QueryReceivedArgs^ get();
       void set (    QueryReceivedArgs^ value);
    }
    Remarks
    This property can be used when implementing a C-MOVE SCP. This property points to the object holding the information about the current query request. in the new association (established from SCP to the move destination) to point it to the primary C-MOVE request. This will make a linkage between the outgoing association and the C-MOVE requesting association, and with every image sent out via the outgoing association DicomObjects will automatically send a notification (as part of the C-MOVE response) and once a final C-MOVE response has been sent by SCP, the outgoing association will be automatically closed.
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also