DicomObjects.NET.V8
DicomObjects Namespace / DicomAssociation Class / ReturnedCommands Property



In This Topic
    ReturnedCommands Property
    In This Topic
    The command datasets returned in response to the last operation
    Syntax
    'Declaration
     
    Public ReadOnly Property ReturnedCommands As DicomDataSetCollection
    'Usage
     
    Dim instance As DicomAssociation
    Dim value As DicomDataSetCollection
     
    value = instance.ReturnedCommands
    public DicomDataSetCollection ReturnedCommands {get;}
    public:
    property DicomDataSetCollection^ ReturnedCommands {
       DicomDataSetCollection^ get();
    }
    Remarks
    In most cases, the useful data returned from an operation will be present once the operation is complete in properties such as Status, LastStatus, ReturnedIdentifier or ReturnedIdentifiers. However, in some cases, particularly where errors are reported, it is useful to be able to access and parse the associated command (group 0) elements. This property provides that facility, and contains one DicomDataSet for each response received.
    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also