DynamicValue Constructor

 

Initializes a new instance of the DynamicValue class.

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

Overload List

Name Description
System_CAPS_pubmethod DynamicValue()

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

System_CAPS_pubmethod DynamicValue(Boolean)

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

System_CAPS_pubmethod DynamicValue(DateTime)

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

System_CAPS_pubmethod DynamicValue(Double)

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

System_CAPS_pubmethod DynamicValue(Guid)

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

System_CAPS_pubmethod DynamicValue(Int32)

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

System_CAPS_pubmethod DynamicValue(Int64)

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

System_CAPS_pubmethod DynamicValue(String)

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

System_CAPS_pubmethod DynamicValue(TimeSpan)

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

See Also

DynamicValue Class
Microsoft.Activities Namespace

Return to top

DynamicValue Constructor ()

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

Syntax

public DynamicValue()
public:
DynamicValue()
new : unit -> DynamicValue
Public Sub New

Return to top

DynamicValue Constructor (Boolean)

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

Syntax

public DynamicValue(
    bool value
)
public:
DynamicValue(
    bool value
)
new : 
        value:bool -> DynamicValue
Public Sub New (
    value As Boolean
)

Parameters

Return to top

DynamicValue Constructor (DateTime)

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

Syntax

public DynamicValue(
    DateTime value
)
public:
DynamicValue(
    DateTime value
)
new : 
        value:DateTime -> DynamicValue
Public Sub New (
    value As Date
)

Parameters

Return to top

DynamicValue Constructor (Double)

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

Syntax

public DynamicValue(
    double value
)
public:
DynamicValue(
    double value
)
new : 
        value:float -> DynamicValue
Public Sub New (
    value As Double
)

Parameters

Return to top

DynamicValue Constructor (Guid)

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

Syntax

public DynamicValue(
    Guid value
)
public:
DynamicValue(
    Guid value
)
new : 
        value:Guid -> DynamicValue
Public Sub New (
    value As Guid
)

Parameters

Return to top

DynamicValue Constructor (Int32)

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

Syntax

public DynamicValue(
    int value
)
public:
DynamicValue(
    int value
)
new : 
        value:int -> DynamicValue
Public Sub New (
    value As Integer
)

Parameters

Return to top

DynamicValue Constructor (Int64)

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

Syntax

public DynamicValue(
    long value
)
public:
DynamicValue(
    long long value
)
new : 
        value:int64 -> DynamicValue
Public Sub New (
    value As Long
)

Parameters

Return to top

DynamicValue Constructor (String)

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

Syntax

public DynamicValue(
    string value
)
public:
DynamicValue(
    String^ value
)
new : 
        value:string -> DynamicValue
Public Sub New (
    value As String
)

Parameters

Return to top

DynamicValue Constructor (TimeSpan)

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

Syntax

public DynamicValue(
    TimeSpan value
)
public:
DynamicValue(
    TimeSpan value
)
new : 
        value:TimeSpan -> DynamicValue
Public Sub New (
    value As TimeSpan
)

Parameters

Return to top