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






In This Topic
    Status Property (DicomAssociation)
    In This Topic
    Array containing the status codes returned by the last SendInstances or Echo action
    Syntax
    'Declaration
     
    
    Public ReadOnly Property Status As System.Integer()
    'Usage
     
    
    Dim instance As DicomAssociation
    Dim value() As System.Integer
     
    value = instance.Status
    public System.int[] Status {get;}
    public read-only property Status: System.array of Integer; 
    public function get Status : System.int[]
    public: __property System.int[]* get_Status();
    public:
    property System.array<int>^ Status {
       System.array<int>^ get();
    }
    Remarks

    This property contains the result of an outgoing operation on the DicomAssociation. This array is cleared before each operation, and the number of elements therefore reflects the number of images sent.

    After a SendVerify operation, the element will contain only one value, so LastStatus is normally more appropriate.

    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also