Edit

Share via


StoreProperty Constructors

Definition

Overloads

StoreProperty()

Constructors for initializing an empty instance of the StoreProperty class.

StoreProperty(PropertyId, Object)

Constructors for initializing a new instance of the StoreProperty class using the specified property identifier and value.

StoreProperty(String, Object)

Constructors for initializing a new instance of the StoreProperty class using the specified property name and value.

StoreProperty()

Constructors for initializing an empty instance of the StoreProperty class.

public StoreProperty ();
Public Sub New ()

Applies to

StoreProperty(PropertyId, Object)

Constructors for initializing a new instance of the StoreProperty class using the specified property identifier and value.

public StoreProperty (Microsoft.Hpc.Scheduler.Properties.PropertyId propId, object propValue);
new Microsoft.Hpc.Scheduler.Properties.StoreProperty : Microsoft.Hpc.Scheduler.Properties.PropertyId * obj -> Microsoft.Hpc.Scheduler.Properties.StoreProperty
Public Sub New (propId As PropertyId, propValue As Object)

Parameters

propId
PropertyId

A PropertyId object that identifies the property.

propValue
Object

The value of the property.

Applies to

StoreProperty(String, Object)

Constructors for initializing a new instance of the StoreProperty class using the specified property name and value.

public StoreProperty (string propName, object propValue);
new Microsoft.Hpc.Scheduler.Properties.StoreProperty : string * obj -> Microsoft.Hpc.Scheduler.Properties.StoreProperty
Public Sub New (propName As String, propValue As Object)

Parameters

propName
String

The name of the property.

propValue
Object

The value of the property.

Applies to