DicomObjects.NET.V8
DicomObjects Namespace / DicomServer Class / InfoMessage Event



In This Topic
    InfoMessage Event
    In This Topic
    Passes information back to the container for error messages and notifications originating from the DICOM interface.
    Syntax
    'Declaration
     
    Public Event InfoMessage As InfoMessageHandler
    'Usage
     
    Dim instance As DicomServer
    Dim handler As InfoMessageHandler
     
    AddHandler instance.InfoMessage, handler
    public event InfoMessageHandler InfoMessage
    public:
    event InfoMessageHandler^ InfoMessage
    Remarks

    Where possible, objects pass error information back to the container standard exceptions, but this is not possible for errors originating from the DICOM interface, as there is no call from the container to the object in progress. This event is therefore used for that purpose.

    Debugging information may include all or part of the byte stream exchanged between DicomObjects and other entities, and is useful when communication failures occur.

    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also