SelectionTask<TBusinessObject>.ConditionProvider Property
Gets or sets a Converter<TInput, TOutput> delegate method that is used to convert an instance of a business object to the TaskCondition<TBusinessObject> for the task.
Namespace: Microsoft.WindowsServerSolutions.Administration.ObjectModel
Assembly: Microsoft.WindowsServerSolutions.Administration.ObjectModel (in Microsoft.WindowsServerSolutions.Administration.ObjectModel.dll)
Syntax
public Converter<TBusinessObject, TaskCondition> ConditionProvider { get; set; }
public:
property Converter<TBusinessObject, TaskCondition>^ ConditionProvider {
Converter<TBusinessObject, TaskCondition>^ get();
void set(Converter<TBusinessObject, TaskCondition>^ value);
}
Public Property ConditionProvider As Converter(Of TBusinessObject, TaskCondition)
Property Value
Type: System.Converter<TBusinessObject, TaskCondition>
An instance of a Converter<TInput, TOutput> delegate method.
Remarks
A business object encapsulates information and methods, which relate to business data or business functionality. The information in a business object is usually exposed as properties.
This property is used by the Dashboard when an instance of a business object is selected to determine how the task operates on the selected object.
See Also
SelectionTask<TBusinessObject> Class
Microsoft.WindowsServerSolutions.Administration.ObjectModel Namespace
Return to top