IgnoreDifferencePredicate Delegate
Namespace: Microsoft.VisualStudio.Data.Tools.Delta
Assembly: Microsoft.VisualStudio.Data.Tools.Delta (in Microsoft.VisualStudio.Data.Tools.Delta.dll)
Syntax
'Declaration
Public Delegate Function IgnoreDifferencePredicate ( _
lineDifference As Difference, _
leftSnapshot As ITextSnapshot, _
rightSnapshot As ITextSnapshot _
) As Boolean
'Usage
Dim instance As New IgnoreDifferencePredicate(AddressOf HandlerMethod)
public delegate bool IgnoreDifferencePredicate(
Difference lineDifference,
ITextSnapshot leftSnapshot,
ITextSnapshot rightSnapshot
)
public delegate bool IgnoreDifferencePredicate(
Difference^ lineDifference,
ITextSnapshot^ leftSnapshot,
ITextSnapshot^ rightSnapshot
)
type IgnoreDifferencePredicate =
delegate of
lineDifference:Difference *
leftSnapshot:ITextSnapshot *
rightSnapshot:ITextSnapshot -> bool
JScript supports the use of delegates, but not the declaration of new ones.
Parameters
- lineDifference
Type: Difference
- leftSnapshot
Type: ITextSnapshot
- rightSnapshot
Type: ITextSnapshot
Return Value
Type: System..::..Boolean