DynamicValue Implicit Conversion Operators

 

Casts to a DynamicValue.

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

NameDescription
System_CAPS_puboperatorSystem_CAPS_staticWidening(Boolean to DynamicValue)

Casts a Boolean value to a DynamicValue.

System_CAPS_puboperatorSystem_CAPS_staticWidening(DateTime to DynamicValue)

Casts a DateTime value to a DynamicValue.

System_CAPS_puboperatorSystem_CAPS_staticWidening(Double to DynamicValue)

Casts a Double value to a DynamicValue.

System_CAPS_puboperatorSystem_CAPS_staticWidening(DynamicValue to Boolean)

Casts a dynamic value into a Boolean Value.

System_CAPS_puboperatorSystem_CAPS_staticWidening(DynamicValue to DateTime)

Converts a dynamic value to a DateTime value.

System_CAPS_puboperatorSystem_CAPS_staticWidening(DynamicValue to Double)

Converts a dynamic value to a Double value.

System_CAPS_puboperatorSystem_CAPS_staticWidening(DynamicValue to Guid)

Converts a dynamic value to a Guid value.

System_CAPS_puboperatorSystem_CAPS_staticWidening(DynamicValue to Int32)

Converts a dynamic value to an Int32 value.

System_CAPS_puboperatorSystem_CAPS_staticWidening(DynamicValue to String)

Converts a dynamic value to a String value.

System_CAPS_puboperatorSystem_CAPS_staticWidening(DynamicValue to TimeSpan)

Converts a dynamic value to a TimeSpan value.

System_CAPS_puboperatorSystem_CAPS_staticWidening(Guid to DynamicValue)

Casts a GUID value to a DynamicValue.

System_CAPS_puboperatorSystem_CAPS_staticWidening(Int32 to DynamicValue)

Casts an Int32 value to a DynamicValue.

System_CAPS_puboperatorSystem_CAPS_staticWidening(Int64 to DynamicValue)

Converts an Int64 value to a Dynamic Value.

System_CAPS_puboperatorSystem_CAPS_staticWidening(String to DynamicValue)

Casts a String value to a DynamicValue.

System_CAPS_puboperatorSystem_CAPS_staticWidening(TimeSpan to DynamicValue)

Converts a TimeSpan value to a Dynamic Value.

Return to top

DynamicValue Widening Conversion (Boolean to DynamicValue)

Casts a Boolean value to a DynamicValue.

Public Shared Widening Operator CType (
	value As Boolean
) As DynamicValue

Parameters

value
Type: System.Boolean

A Boolean value.

Return Value

Type: Microsoft.Activities.DynamicValue

A DynamicValue representation of the specified Boolean value.

Return to top

DynamicValue Widening Conversion (DateTime to DynamicValue)

Casts a DateTime value to a DynamicValue.

Public Shared Widening Operator CType (
	value As Date
) As DynamicValue

Parameters

value
Type: System.DateTime

A DateTime value.

Return Value

Type: Microsoft.Activities.DynamicValue

A DynamicValue representation of the specified DateTime value.

Return to top

DynamicValue Widening Conversion (Double to DynamicValue)

Casts a Double value to a DynamicValue.

Public Shared Widening Operator CType (
	value As Double
) As DynamicValue

Parameters

value
Type: System.Double

A Double value.

Return Value

Type: Microsoft.Activities.DynamicValue

A DynamicValue representation of the specified Double value.

Return to top

DynamicValue Widening Conversion (DynamicValue to Boolean)

Casts a dynamic value into a Boolean Value.

Public Shared Widening Operator CType (
	dynamicValue As DynamicValue
) As Boolean

Parameters

dynamicValue
Type: Microsoft.Activities.DynamicValue

The dynamic value to be casted as a Boolean Value.

Return Value

Type: System.Boolean

The Boolean Value.

Return to top

DynamicValue Widening Conversion (DynamicValue to DateTime)

Converts a dynamic value to a DateTime value.

Public Shared Widening Operator CType (
	dynamicValue As DynamicValue
) As Date

Parameters

dynamicValue
Type: Microsoft.Activities.DynamicValue

The dynamic value to be converted to DateTime Value.

Return Value

Type: System.DateTime

The converted DateTime value from a dynamic value.

Return to top

DynamicValue Widening Conversion (DynamicValue to Double)

Converts a dynamic value to a Double value.

Public Shared Widening Operator CType (
	dynamicValue As DynamicValue
) As Double

Parameters

dynamicValue
Type: Microsoft.Activities.DynamicValue

The dynamic value to be converted to Double Value.

Return Value

Type: System.Double

The converted Double value from a dynamic value.

Return to top

DynamicValue Widening Conversion (DynamicValue to Guid)

Converts a dynamic value to a Guid value.

Public Shared Widening Operator CType (
	dynamicValue As DynamicValue
) As Guid

Parameters

dynamicValue
Type: Microsoft.Activities.DynamicValue

The dynamic value to be converted to Guid Value.

Return Value

Type: System.Guid

The converted Guid value from a dynamic value.

Return to top

DynamicValue Widening Conversion (DynamicValue to Int32)

Converts a dynamic value to an Int32 value.

Public Shared Widening Operator CType (
	dynamicValue As DynamicValue
) As Integer

Parameters

dynamicValue
Type: Microsoft.Activities.DynamicValue

The dynamic value to be converted to Int32 Value.

Return Value

Type: System.Int32

The converted Int32 value from a dynamic value.

Return to top

DynamicValue Widening Conversion (DynamicValue to String)

Converts a dynamic value to a String value.

Public Shared Widening Operator CType (
	dynamicValue As DynamicValue
) As String

Parameters

dynamicValue
Type: Microsoft.Activities.DynamicValue

The dynamic value to be converted to String Value.

Return Value

Type: System.String

The converted String value from a dynamic value.

Return to top

DynamicValue Widening Conversion (DynamicValue to TimeSpan)

Converts a dynamic value to a TimeSpan value.

Public Shared Widening Operator CType (
	dynamicValue As DynamicValue
) As TimeSpan

Parameters

dynamicValue
Type: Microsoft.Activities.DynamicValue

The dynamic value to be converted to TimeSpan Value.

Return Value

Type: System.TimeSpan

The converted TimeSpan value from a dynamic value.

Return to top

DynamicValue Widening Conversion (Guid to DynamicValue)

Casts a GUID value to a DynamicValue.

Public Shared Widening Operator CType (
	value As Guid
) As DynamicValue

Parameters

value
Type: System.Guid

A GUID value.

Return Value

Type: Microsoft.Activities.DynamicValue

A DynamicValue representation of the specified GUID value.

Return to top

DynamicValue Widening Conversion (Int32 to DynamicValue)

Casts an Int32 value to a DynamicValue.

Public Shared Widening Operator CType (
	value As Integer
) As DynamicValue

Parameters

value
Type: System.Int32

An Int32 value

Return Value

Type: Microsoft.Activities.DynamicValue

A DynamicValue representation of the specified Int32 value.

Return to top

DynamicValue Widening Conversion (Int64 to DynamicValue)

Converts an Int64 value to a Dynamic Value.

Public Shared Widening Operator CType (
	value As Long
) As DynamicValue

Parameters

value
Type: System.Int64

The value to convert.

Return Value

Type: Microsoft.Activities.DynamicValue

The converted Dynamic Value.

Return to top

DynamicValue Widening Conversion (String to DynamicValue)

Casts a String value to a DynamicValue.

Public Shared Widening Operator CType (
	value As String
) As DynamicValue

Parameters

value
Type: System.String

A String value.

Return Value

Type: Microsoft.Activities.DynamicValue

A DynamicValue representation of the specified String value.

Return to top

DynamicValue Widening Conversion (TimeSpan to DynamicValue)

Converts a TimeSpan value to a Dynamic Value.

Public Shared Widening Operator CType (
	value As TimeSpan
) As DynamicValue

Parameters

value
Type: System.TimeSpan

The value to convert.

Return Value

Type: Microsoft.Activities.DynamicValue

The converted Dynamic Value.

Return to top
Show: