DicomObjects.NET8 Documentation
DicomObjects.DicomWeb.Delegates Namespace / ErrorReceivedDelegate Delegate
The event argument which contains the actual Exception



In This Topic
    ErrorReceivedDelegate Delegate
    In This Topic
    delegate for event that handles any Exceptions the WebServer encounters
    Syntax
    'Declaration
     
    
    Public Delegate Sub ErrorReceivedDelegate( _
       ByVal args As ErrorEventArgs _
    ) 
    'Usage
     
    
    Dim instance As New ErrorReceivedDelegate(AddressOf HandlerMethod)
    public delegate void ErrorReceivedDelegate( 
       ErrorEventArgs args
    )
    public delegate void ErrorReceivedDelegate( 
       ErrorEventArgs^ args
    )

    Parameters

    args
    The event argument which contains the actual Exception
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also