DicomObjects.NET.V8
DicomObjects.EventArguments Namespace / OperationBaseArgs Class / Errors Property



In This Topic
    Errors Property
    In This Topic
    List of errors found in an incoming request
    Syntax
    'Declaration
     
    Public ReadOnly Property Errors As DicomDataSet
    'Usage
     
    Dim instance As OperationBaseArgs
    Dim value As DicomDataSet
     
    value = instance.Errors
    public DicomDataSet Errors {get;}
    public:
    property DicomDataSet^ Errors {
       DicomDataSet^ get();
    }
    Remarks

    If a client identifies errors in a DicomAssociation, it should place appropriate values into this property before setting the Status to an appropriate error code.

    The appropriate elements to be inserted into this dataset are:

    • (0000, 0901) : Offending Element
    • (0000, 0902) : Error Comment

    Only the appropriate elements, as defined by the returned status will be transmitted.

    SCP uses this property to check if there is any errors reported by the connected clients.

    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also