DynamicValue Implicit Conversion Operators

 

Casts to a DynamicValue.

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

Overload List

Name Description
System_CAPS_puboperatorSystem_CAPS_static Implicit(Boolean to DynamicValue)

Casts a Boolean value to a DynamicValue.

System_CAPS_puboperatorSystem_CAPS_static Implicit(DateTime to DynamicValue)

Casts a DateTime value to a DynamicValue.

System_CAPS_puboperatorSystem_CAPS_static Implicit(Double to DynamicValue)

Casts a Double value to a DynamicValue.

System_CAPS_puboperatorSystem_CAPS_static Implicit(DynamicValue to Boolean)

Casts a dynamic value into a Boolean Value.

System_CAPS_puboperatorSystem_CAPS_static Implicit(DynamicValue to DateTime)

Converts a dynamic value to a DateTime value.

System_CAPS_puboperatorSystem_CAPS_static Implicit(DynamicValue to Double)

Converts a dynamic value to a Double value.

System_CAPS_puboperatorSystem_CAPS_static Implicit(DynamicValue to Guid)

Converts a dynamic value to a Guid value.

System_CAPS_puboperatorSystem_CAPS_static Implicit(DynamicValue to Int32)

Converts a dynamic value to an Int32 value.

System_CAPS_puboperatorSystem_CAPS_static Implicit(DynamicValue to String)

Converts a dynamic value to a String value.

System_CAPS_puboperatorSystem_CAPS_static Implicit(DynamicValue to TimeSpan)

Converts a dynamic value to a TimeSpan value.

System_CAPS_puboperatorSystem_CAPS_static Implicit(Guid to DynamicValue)

Casts a GUID value to a DynamicValue.

System_CAPS_puboperatorSystem_CAPS_static Implicit(Int32 to DynamicValue)

Casts an Int32 value to a DynamicValue.

System_CAPS_puboperatorSystem_CAPS_static Implicit(Int64 to DynamicValue)

Converts an Int64 value to a Dynamic Value.

System_CAPS_puboperatorSystem_CAPS_static Implicit(String to DynamicValue)

Casts a String value to a DynamicValue.

System_CAPS_puboperatorSystem_CAPS_static Implicit(TimeSpan to DynamicValue)

Converts a TimeSpan value to a Dynamic Value.

See Also

DynamicValue Class
Microsoft.Activities Namespace

Return to top

DynamicValue Implicit Conversion (Boolean to DynamicValue)

Casts a Boolean value to a DynamicValue.

Syntax

public static implicit operator DynamicValue (
    bool value
)
public:
static operator DynamicValue^ (
    bool value
)
F# does not support this operator
Public Shared Widening Operator CType (
    value As Boolean
) As DynamicValue

Parameters

Return Value

Type: Microsoft.Activities.DynamicValue

A DynamicValue representation of the specified Boolean value.

Return to top

DynamicValue Implicit Conversion (DateTime to DynamicValue)

Casts a DateTime value to a DynamicValue.

Syntax

public static implicit operator DynamicValue (
    DateTime value
)
public:
static operator DynamicValue^ (
    DateTime value
)
F# does not support this operator
Public Shared Widening Operator CType (
    value As Date
) As DynamicValue

Parameters

Return Value

Type: Microsoft.Activities.DynamicValue

A DynamicValue representation of the specified DateTime value.

Return to top

DynamicValue Implicit Conversion (Double to DynamicValue)

Casts a Double value to a DynamicValue.

Syntax

public static implicit operator DynamicValue (
    double value
)
public:
static operator DynamicValue^ (
    double value
)
F# does not support this operator
Public Shared Widening Operator CType (
    value As Double
) As DynamicValue

Parameters

Return Value

Type: Microsoft.Activities.DynamicValue

A DynamicValue representation of the specified Double value.

Return to top

DynamicValue Implicit Conversion (DynamicValue to Boolean)

Casts a dynamic value into a Boolean Value.

Syntax

public static implicit operator bool (
    DynamicValue dynamicValue
)
public:
static operator bool (
    DynamicValue^ dynamicValue
)
F# does not support this operator
Public Shared Widening Operator CType (
    dynamicValue As DynamicValue
) As Boolean

Parameters

Return Value

Type: System.Boolean

The Boolean Value.

Return to top

DynamicValue Implicit Conversion (DynamicValue to DateTime)

Converts a dynamic value to a DateTime value.

Syntax

public static implicit operator DateTime (
    DynamicValue dynamicValue
)
public:
static operator DateTime (
    DynamicValue^ dynamicValue
)
F# does not support this operator
Public Shared Widening Operator CType (
    dynamicValue As DynamicValue
) As Date

Parameters

Return Value

Type: System.DateTime

The converted DateTime value from a dynamic value.

Return to top

DynamicValue Implicit Conversion (DynamicValue to Double)

Converts a dynamic value to a Double value.

Syntax

public static implicit operator double (
    DynamicValue dynamicValue
)
public:
static operator double (
    DynamicValue^ dynamicValue
)
F# does not support this operator
Public Shared Widening Operator CType (
    dynamicValue As DynamicValue
) As Double

Parameters

Return Value

Type: System.Double

The converted Double value from a dynamic value.

Return to top

DynamicValue Implicit Conversion (DynamicValue to Guid)

Converts a dynamic value to a Guid value.

Syntax

public static implicit operator Guid (
    DynamicValue dynamicValue
)
public:
static operator Guid (
    DynamicValue^ dynamicValue
)
F# does not support this operator
Public Shared Widening Operator CType (
    dynamicValue As DynamicValue
) As Guid

Parameters

Return Value

Type: System.Guid

The converted Guid value from a dynamic value.

Return to top

DynamicValue Implicit Conversion (DynamicValue to Int32)

Converts a dynamic value to an Int32 value.

Syntax

public static implicit operator int (
    DynamicValue dynamicValue
)
public:
static operator int (
    DynamicValue^ dynamicValue
)
F# does not support this operator
Public Shared Widening Operator CType (
    dynamicValue As DynamicValue
) As Integer

Parameters

Return Value

Type: System.Int32

The converted Int32 value from a dynamic value.

Return to top

DynamicValue Implicit Conversion (DynamicValue to String)

Converts a dynamic value to a String value.

Syntax

public static implicit operator string (
    DynamicValue dynamicValue
)
public:
static operator String^ (
    DynamicValue^ dynamicValue
)
F# does not support this operator
Public Shared Widening Operator CType (
    dynamicValue As DynamicValue
) As String

Parameters

Return Value

Type: System.String

The converted String value from a dynamic value.

Return to top

DynamicValue Implicit Conversion (DynamicValue to TimeSpan)

Converts a dynamic value to a TimeSpan value.

Syntax

public static implicit operator TimeSpan (
    DynamicValue dynamicValue
)
public:
static operator TimeSpan (
    DynamicValue^ dynamicValue
)
F# does not support this operator
Public Shared Widening Operator CType (
    dynamicValue As DynamicValue
) As TimeSpan

Parameters

Return Value

Type: System.TimeSpan

The converted TimeSpan value from a dynamic value.

Return to top

DynamicValue Implicit Conversion (Guid to DynamicValue)

Casts a GUID value to a DynamicValue.

Syntax

public static implicit operator DynamicValue (
    Guid value
)
public:
static operator DynamicValue^ (
    Guid value
)
F# does not support this operator
Public Shared Widening Operator CType (
    value As Guid
) As DynamicValue

Parameters

Return Value

Type: Microsoft.Activities.DynamicValue

A DynamicValue representation of the specified GUID value.

Return to top

DynamicValue Implicit Conversion (Int32 to DynamicValue)

Casts an Int32 value to a DynamicValue.

Syntax

public static implicit operator DynamicValue (
    int value
)
public:
static operator DynamicValue^ (
    int value
)
F# does not support this operator
Public Shared Widening Operator CType (
    value As Integer
) As DynamicValue

Parameters

Return Value

Type: Microsoft.Activities.DynamicValue

A DynamicValue representation of the specified Int32 value.

Return to top

DynamicValue Implicit Conversion (Int64 to DynamicValue)

Converts an Int64 value to a Dynamic Value.

Syntax

public static implicit operator DynamicValue (
    long value
)
public:
static operator DynamicValue^ (
    long long value
)
F# does not support this operator
Public Shared Widening Operator CType (
    value As Long
) As DynamicValue

Parameters

Return Value

Type: Microsoft.Activities.DynamicValue

The converted Dynamic Value.

Return to top

DynamicValue Implicit Conversion (String to DynamicValue)

Casts a String value to a DynamicValue.

Syntax

public static implicit operator DynamicValue (
    string value
)
public:
static operator DynamicValue^ (
    String^ value
)
F# does not support this operator
Public Shared Widening Operator CType (
    value As String
) As DynamicValue

Parameters

Return Value

Type: Microsoft.Activities.DynamicValue

A DynamicValue representation of the specified String value.

Return to top

DynamicValue Implicit Conversion (TimeSpan to DynamicValue)

Converts a TimeSpan value to a Dynamic Value.

Syntax

public static implicit operator DynamicValue (
    TimeSpan value
)
public:
static operator DynamicValue^ (
    TimeSpan value
)
F# does not support this operator
Public Shared Widening Operator CType (
    value As TimeSpan
) As DynamicValue

Parameters

Return Value

Type: Microsoft.Activities.DynamicValue

The converted Dynamic Value.

Return to top