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)

generic<typename TBusinessObject>
public delegate bool EqualityChecker(
	TBusinessObject first,
	TBusinessObject second
)

Parameters

first
Type: TBusinessObject

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

second
Type: TBusinessObject

The 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.

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.

Return to top

Community Additions

ADD
Show: