Share via


AsyncUiTask<TBusinessObject>.ArgumentEquality Property

 

Gets or sets an EqualityChecker<TBusinessObject> delegate method that is used to determine whether two business objects are equal.

Namespace:   Microsoft.WindowsServerSolutions.Administration.ObjectModel
Assembly:  Microsoft.WindowsServerSolutions.Administration.ObjectModel (in Microsoft.WindowsServerSolutions.Administration.ObjectModel.dll)

Syntax

public EqualityChecker<TBusinessObject> ArgumentEquality { get; set; }
public:
property EqualityChecker<TBusinessObject>^ ArgumentEquality {
    EqualityChecker<TBusinessObject>^ get();
    void set(EqualityChecker<TBusinessObject>^ value);
}
Public Property ArgumentEquality As EqualityChecker(Of TBusinessObject)

Property Value

Type: Microsoft.WindowsServerSolutions.Administration.ObjectModel.EqualityChecker<TBusinessObject>

An instance of EqualityChecker<TBusinessObject> that defines the method that compares two business objects.

Remarks

The EqualityChecker<TBusinessObject> delegate method is used by the Dashboard to determine whether it should activate the user interface that is associated with a task that is already running. For more information, see UiActivation.

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.

See Also

AsyncUiTask<TBusinessObject> Class
Microsoft.WindowsServerSolutions.Administration.ObjectModel Namespace

Return to top