DicomObjects.NET.8.48 Documentation
DicomObjects.EventArguments Namespace / QueryReceivedArgs Class / NumberCompleted Property






In This Topic
    NumberCompleted Property
    In This Topic
    Numbers of completed C-STORE sub-operations in a C-GET or C_MOVE operation
    Syntax
    'Declaration
     
    
    Public Property NumberCompleted As System.Integer
    'Usage
     
    
    Dim instance As QueryReceivedArgs
    Dim value As System.Integer
     
    instance.NumberCompleted = value
     
    value = instance.NumberCompleted
    public System.int NumberCompleted {get; set;}
    public read-write property NumberCompleted: System.Integer; 
    public function get,set NumberCompleted : System.int
    public: __property System.int get_NumberCompleted();
    public: __property void set_NumberCompleted( 
       System.int value
    );
    public:
    property System.int NumberCompleted {
       System.int get();
       void set (    System.int value);
    }
    Remarks
    NumberComleted, NumberWarning, NumberFailed and NumberRemaining, these values are returned to the requester as part of pending or final status notifications.

    Values are updated automatically as part of SendImages, each operation decrementing NumberRemaining, and incrementing NumberCompleted, NumberWarning or NumberFailed according to the status returned.

    If NumberRemaining is less than the number of images sent by a SendImages call, then NumberRemaining is set to the number of images to be returned by that call. Therefore, if an application intends to return all the images for a request in one operation, then it need not manipulate these values at all, as the DicomAssociation object will handle then automatically. If however the application wishes to call SendImages more than once, then NumberRemaining must be set correctly before the first call.

    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also