InstanceValue 构造函数

定义

初始化类的 InstanceValue 实例。

重载

名称 说明
InstanceValue(Object)

使用作为参数传递的值对象初始化类的 InstanceValue 实例。

InstanceValue(Object, InstanceValueOptions)

使用值 Object 和作为参数传递的值的选项初始化类的 InstanceValue 实例。

InstanceValue(Object)

使用作为参数传递的值对象初始化类的 InstanceValue 实例。

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)

参数

value
Object

value 对象。

适用于

InstanceValue(Object, InstanceValueOptions)

使用值 Object 和作为参数传递的值的选项初始化类的 InstanceValue 实例。

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)

参数

value
Object

value 对象。

options
InstanceValueOptions

值对象的选项。 有关详细信息,请参阅 InstanceValueOptions

适用于