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)
Assembly: Microsoft.EssentialBusinessServer.Console.ObjectModel (in microsoft.essentialbusinessserver.console.objectmodel.dll)
public delegate bool EqualityChecker<TBusinessObject> ( 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.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.
Community Additions
Show: