Edit

Share via


PropertyRow.Item[] Property

Definition

Overloads

Item[PropertyId]

Retrieve a property from the list of properties in the row using a property identifier as the indexer.

Item[Int32]

Retrieve a property from the list of properties in the row using an index as the indexer.

Item[PropertyId]

Retrieve a property from the list of properties in the row using a property identifier as the indexer.

public Microsoft.Hpc.Scheduler.Properties.StoreProperty this[Microsoft.Hpc.Scheduler.Properties.PropertyId propId] { get; }
member this.Item(Microsoft.Hpc.Scheduler.Properties.PropertyId) : Microsoft.Hpc.Scheduler.Properties.StoreProperty
Default Public ReadOnly Property Item(propId As PropertyId) As StoreProperty

Parameters

propId
PropertyId

A PropertyId object that identifies the property. For example, to specify the job state property, set the indexer to State.

Property Value

A StoreProperty object that contains the property.

Applies to

Item[Int32]

Retrieve a property from the list of properties in the row using an index as the indexer.

public Microsoft.Hpc.Scheduler.Properties.StoreProperty this[int index] { get; set; }
member this.Item(int) : Microsoft.Hpc.Scheduler.Properties.StoreProperty with get, set
Default Public Property Item(index As Integer) As StoreProperty

Parameters

index
Int32

A zero-based index of the property to retrieve.

Property Value

A StoreProperty object that contains the property.

Applies to