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



In This Topic
    ErrorReceivedDelegateAsync Delegate
    In This Topic
    delegate for async event that handles any Exceptions the WebServer encounters
    Syntax
    'Declaration
     
    
    Public Delegate Function ErrorReceivedDelegateAsync( _
       ByVal args As ErrorEventArgs _
    ) As Task
    'Usage
     
    
    Dim instance As New ErrorReceivedDelegateAsync(AddressOf HandlerMethod)
    public delegate Task ErrorReceivedDelegateAsync( 
       ErrorEventArgs args
    )
    public delegate Task^ ErrorReceivedDelegateAsync( 
       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