ErrorReporterDelegate Delegate
A delegate used for subscribers of OnReportError event.
Namespace: Microsoft.TeamFoundation.Framework.Server
Assembly: Microsoft.TeamFoundation.Framework.Server (in Microsoft.TeamFoundation.Framework.Server.dll)
Syntax
'Declaration
Public Delegate Function ErrorReporterDelegate ( _
exception As Exception _
) As Nullable(Of Boolean)
public delegate Nullable<bool> ErrorReporterDelegate(
Exception exception
)
public delegate Nullable<bool> ErrorReporterDelegate(
Exception^ exception
)
type ErrorReporterDelegate =
delegate of
exception:Exception -> Nullable<bool>
JScript does not support delegates.
Parameters
- exception
Type: System.Exception
Return Value
Type: System.Nullable<Boolean>