DicomObjects.NET.8.48 Documentation
DicomObjects.EventArguments Namespace / ResponseReceivedArgs Class / ReturnStatus Property






In This Topic
    ReturnStatus Property
    In This Topic
    The Status to be returned for Instance received via C-GET
    Syntax
    'Declaration
     
    
    Public Property ReturnStatus As System.Integer
    'Usage
     
    
    Dim instance As ResponseReceivedArgs
    Dim value As System.Integer
     
    instance.ReturnStatus = value
     
    value = instance.ReturnStatus
    public System.int ReturnStatus {get; set;}
    public read-write property ReturnStatus: System.Integer; 
    public function get,set ReturnStatus : System.int
    public: __property System.int get_ReturnStatus();
    public: __property void set_ReturnStatus( 
       System.int value
    );
    public:
    property System.int ReturnStatus {
       System.int get();
       void set (    System.int value);
    }
    Remarks

    C-GET request causes internal C-STORE operations to happen and this property provides means to send status back after each single instance received via C-STORE. The default value is zero and if you need to send non-zero status back to indicate an unsuccessful C-Store operation, set this property to any non-zero value (normally 1).

    The COM version hasn't got such a property to send non-zero C-Store (caused by C-GET) status back.

    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also