EqualityChecker Generic Delegate

Represents a method that checks the equality of two business objects.

Namespace: Microsoft.EssentialBusinessServer.Console.ObjectModel
Assembly: Microsoft.EssentialBusinessServer.Console.ObjectModel (in microsoft.essentialbusinessserver.console.objectmodel.dll)

Usage

Syntax

'Declaration
Public Delegate Function EqualityChecker(Of TBusinessObject) ( _
    first As TBusinessObject, _
    second As TBusinessObject _
) As Boolean
public delegate bool EqualityChecker<TBusinessObject> (
    TBusinessObject first,
    TBusinessObject second
)
generic<typename TBusinessObject>
public delegate bool EqualityChecker (
    TBusinessObject first, 
    TBusinessObject second
)

Parameters

  • first
    The business object to be compared to the second business object.
  • second
    The business object to be compared to the first business object.

Return Value

true if the objects are equal in value; otherwise, false.

Remarks

TBusinessObject represents a business object that encapsulates information and methods that relate to business data or business functionality. The information in the business object is exposed as properties.

The EqualityChecker object is used by an AsyncUiTask object.

Platforms

Development Platforms

Windows Server 2008 64-bit Edition, Windows Vista 64-bit Edition, Windows Essential Business Server 2008 Standard, Windows Essential Business Server 2008 Premium

Target Platforms

Windows Essential Business Server 2008 Standard, Windows Essential Business Server 2008 Premium

See Also

Reference

Microsoft.EssentialBusinessServer.Console.ObjectModel Namespace