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.

new : unit -> DynamicValue
Return to top

DynamicValue Constructor (Boolean)

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

new : 
        value:bool -> DynamicValue

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.

new : 
        value:DateTime -> DynamicValue

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.

new : 
        value:float -> DynamicValue

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.

new : 
        value:Guid -> DynamicValue

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.

new : 
        value:int -> DynamicValue

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.

new : 
        value:int64 -> DynamicValue

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.

new : 
        value:string -> DynamicValue

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.

new : 
        value:TimeSpan -> DynamicValue

Parameters

value
Type: System.TimeSpan

The value to add to the DynamicValue.

Return to top
Show: