Edit

Share via


InstanceValue Constructors

Definition

Initializes an instance of the InstanceValue class.

Overloads

InstanceValue(Object)

Initializes an instance of the InstanceValue class by using value object passed as a parameter.

InstanceValue(Object, InstanceValueOptions)

Initializes an instance of the InstanceValue class by using the value Object and the options for those values passed as parameters.

InstanceValue(Object)

Initializes an instance of the InstanceValue class by using value object passed as a parameter.

public:
 InstanceValue(System::Object ^ value);
public InstanceValue (object value);
new System.Runtime.DurableInstancing.InstanceValue : obj -> System.Runtime.DurableInstancing.InstanceValue
Public Sub New (value As Object)

Parameters

value
Object

The value object.

Applies to

InstanceValue(Object, InstanceValueOptions)

Initializes an instance of the InstanceValue class by using the value Object and the options for those values passed as parameters.

public:
 InstanceValue(System::Object ^ value, System::Runtime::DurableInstancing::InstanceValueOptions options);
public InstanceValue (object value, System.Runtime.DurableInstancing.InstanceValueOptions options);
new System.Runtime.DurableInstancing.InstanceValue : obj * System.Runtime.DurableInstancing.InstanceValueOptions -> System.Runtime.DurableInstancing.InstanceValue
Public Sub New (value As Object, options As InstanceValueOptions)

Parameters

value
Object

The value object.

options
InstanceValueOptions

The options for the value object. For more information, see InstanceValueOptions.

Applies to