FilterProperty Constructors

Definition

Overloads

FilterProperty()

Initializes an empty instance of the FilterProperty class.

FilterProperty(FilterOperator, StoreProperty)

Initializes a new instance of the FilterProperty class using the specified operator and property object.

FilterProperty(FilterOperator, PropertyId, Object)

Initializes a new instance of the FilterProperty class using the specified operator, property identifier, and property value.

FilterProperty()

Initializes an empty instance of the FilterProperty class.

public FilterProperty ();
Public Sub New ()

Applies to

FilterProperty(FilterOperator, StoreProperty)

Initializes a new instance of the FilterProperty class using the specified operator and property object.

public FilterProperty (Microsoft.Hpc.Scheduler.Properties.FilterOperator operation, Microsoft.Hpc.Scheduler.Properties.StoreProperty jobProperty);
new Microsoft.Hpc.Scheduler.Properties.FilterProperty : Microsoft.Hpc.Scheduler.Properties.FilterOperator * Microsoft.Hpc.Scheduler.Properties.StoreProperty -> Microsoft.Hpc.Scheduler.Properties.FilterProperty
Public Sub New (operation As FilterOperator, jobProperty As StoreProperty)

Parameters

operation
FilterOperator

The operator to use when comparing the filter value to the property value. For possible values, see the FilterOperator enumeration.

jobProperty
StoreProperty

The property and property value used to filter the objects. For details, see the StoreProperty class.

Applies to

FilterProperty(FilterOperator, PropertyId, Object)

Initializes a new instance of the FilterProperty class using the specified operator, property identifier, and property value.

public FilterProperty (Microsoft.Hpc.Scheduler.Properties.FilterOperator operation, Microsoft.Hpc.Scheduler.Properties.PropertyId propertyId, object valueFilter);
new Microsoft.Hpc.Scheduler.Properties.FilterProperty : Microsoft.Hpc.Scheduler.Properties.FilterOperator * Microsoft.Hpc.Scheduler.Properties.PropertyId * obj -> Microsoft.Hpc.Scheduler.Properties.FilterProperty

Parameters

operation
FilterOperator

The operator to use when comparing the filter value to the property value. For possible values, see the FilterOperator enumeration.

propertyId
PropertyId

The identifier of the property on which to filter the objects.

valueFilter
Object

The filter value used to compare to the property value.

Applies to