ErrorsPredicate Delegate

Represents the errors predicate.

Namespace:  Microsoft.Data.Schema.Common
Assembly:  Microsoft.Data.Schema (in Microsoft.Data.Schema.dll)

Syntax

'Declaration
Public Delegate Sub ErrorsPredicate ( _
    error As DataSchemaError, _
    <OutAttribute> ByRef includeInResults As Boolean, _
    <OutAttribute> ByRef continueSearch As Boolean _
)
'Usage
Dim instance As New ErrorsPredicate(AddressOf HandlerMethod)
public delegate void ErrorsPredicate(
    DataSchemaError error,
    out bool includeInResults,
    out bool continueSearch
)
public delegate void ErrorsPredicate(
    DataSchemaError^ error, 
    [OutAttribute] bool% includeInResults, 
    [OutAttribute] bool% continueSearch
)
JScript does not support delegates.
type ErrorsPredicate = 
    delegate of 
        error:DataSchemaError * 
        includeInResults:bool * 
        continueSearch:bool -> unit

Parameters

  • includeInResults
    Type: System.Boolean%
    Specifies whether to include in results
  • continueSearch
    Type: System.Boolean%
    Specifies whether to continue search

Remarks

This is an important class in the error management infrastructure. All the DataSchemaError instances are pushed into the system using this class. This class has events that are listened to by ErrorTaskService and acted upon for managing the display of errors in the Error List window.

See Also

Reference

Microsoft.Data.Schema.Common Namespace