DynamicValue Constructor

 

Initializes a new instance of the DynamicValue class.

Namespace:   Microsoft.Activities
Assembly:  Microsoft.Activities (in Microsoft.Activities.dll)

NameDescription
System_CAPS_pubmethodDynamicValue()

Initializes a new instance of the DynamicValue class with default value.

System_CAPS_pubmethodDynamicValue(Boolean)

Initializes a new instance of the DynamicValue class with a Boolean value.

System_CAPS_pubmethodDynamicValue(DateTime)

Initializes a new instance of the DynamicValue class with a DateTime value.

System_CAPS_pubmethodDynamicValue(Double)

Initializes a new instance of the DynamicValue class with a Double value.

System_CAPS_pubmethodDynamicValue(Guid)

Initializes a new instance of the DynamicValue class with a GUID value.

System_CAPS_pubmethodDynamicValue(Int32)

Initializes a new instance of the DynamicValue class with an Int32 value.

System_CAPS_pubmethodDynamicValue(Int64)

Initializes a new instance of the DynamicValue class with an Int64 value.

System_CAPS_pubmethodDynamicValue(String)

Initializes a new instance of the DynamicValue class with a String value.

System_CAPS_pubmethodDynamicValue(TimeSpan)

Initializes a new instance of the DynamicValue class with a TimeSpan value.

Return to top

DynamicValue Constructor ()

Initializes a new instance of the DynamicValue class with default value.

public DynamicValue()
Return to top

DynamicValue Constructor (Boolean)

Initializes a new instance of the DynamicValue class with a Boolean value.

public DynamicValue(
	bool value
)

Parameters

value
Type: System.Boolean

The value to add to the DynamicValue.

Return to top

DynamicValue Constructor (DateTime)

Initializes a new instance of the DynamicValue class with a DateTime value.

public DynamicValue(
	DateTime value
)

Parameters

value
Type: System.DateTime

The value to add to the DynamicValue.

Return to top

DynamicValue Constructor (Double)

Initializes a new instance of the DynamicValue class with a Double value.

public DynamicValue(
	double value
)

Parameters

value
Type: System.Double

The value to add to the DynamicValue.

Return to top

DynamicValue Constructor (Guid)

Initializes a new instance of the DynamicValue class with a GUID value.

public DynamicValue(
	Guid value
)

Parameters

value
Type: System.Guid

The value to add to the DynamicValue.

Return to top

DynamicValue Constructor (Int32)

Initializes a new instance of the DynamicValue class with an Int32 value.

public DynamicValue(
	int value
)

Parameters

value
Type: System.Int32

The value to add to the DynamicValue.

Return to top

DynamicValue Constructor (Int64)

Initializes a new instance of the DynamicValue class with an Int64 value.

public DynamicValue(
	long value
)

Parameters

value
Type: System.Int64

The value to add to the DynamicValue.

Return to top

DynamicValue Constructor (String)

Initializes a new instance of the DynamicValue class with a String value.

public DynamicValue(
	string value
)

Parameters

value
Type: System.String

The value to add to the DynamicValue.

Return to top

DynamicValue Constructor (TimeSpan)

Initializes a new instance of the DynamicValue class with a TimeSpan value.

public DynamicValue(
	TimeSpan value
)

Parameters

value
Type: System.TimeSpan

The value to add to the DynamicValue.

Return to top
Show: