EqualityChecker<TBusinessObject> Delegate
Represents a method that checks the equality of two business objects.
Namespace: Microsoft.WindowsServerSolutions.Administration.ObjectModel
Assembly: Microsoft.WindowsServerSolutions.Administration.ObjectModel (in Microsoft.WindowsServerSolutions.Administration.ObjectModel.dll)
Syntax
public delegate bool EqualityChecker<TBusinessObject>(
TBusinessObject first,
TBusinessObject second
)
generic<typename TBusinessObject>
public delegate bool EqualityChecker(
TBusinessObject first,
TBusinessObject second
)
Public Delegate Function EqualityChecker(Of TBusinessObject) (
first As TBusinessObject,
second As TBusinessObject
) As Boolean
Parameters
first
Type: TBusinessObjectThe business object to be compared to the second business object.
second
Type: TBusinessObjectThe business object to be compared to the first business object.
Return Value
Type: System.Boolean
true if the objects are equal in value; otherwise, false.
Type Parameters
- 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.
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<TBusinessObject> object is used by an AsyncUiTask<TBusinessObject> object.
See Also
Microsoft.WindowsServerSolutions.Administration.ObjectModel Namespace
Return to top