DynamicValue Implicit Conversion Operators

 

Casts to a DynamicValue.

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

NameDescription
System_CAPS_puboperatorSystem_CAPS_staticImplicit(Boolean to DynamicValue^)

Casts a Boolean value to a DynamicValue.

System_CAPS_puboperatorSystem_CAPS_staticImplicit(DateTime to DynamicValue^)

Casts a DateTime value to a DynamicValue.

System_CAPS_puboperatorSystem_CAPS_staticImplicit(Double to DynamicValue^)

Casts a Double value to a DynamicValue.

System_CAPS_puboperatorSystem_CAPS_staticImplicit(DynamicValue^ to Boolean)

Casts a dynamic value into a Boolean Value.

System_CAPS_puboperatorSystem_CAPS_staticImplicit(DynamicValue^ to DateTime)

Converts a dynamic value to a DateTime value.

System_CAPS_puboperatorSystem_CAPS_staticImplicit(DynamicValue^ to Double)

Converts a dynamic value to a Double value.

System_CAPS_puboperatorSystem_CAPS_staticImplicit(DynamicValue^ to Guid)

Converts a dynamic value to a Guid value.

System_CAPS_puboperatorSystem_CAPS_staticImplicit(DynamicValue^ to Int32)

Converts a dynamic value to an Int32 value.

System_CAPS_puboperatorSystem_CAPS_staticImplicit(DynamicValue^ to String^)

Converts a dynamic value to a String value.

System_CAPS_puboperatorSystem_CAPS_staticImplicit(DynamicValue^ to TimeSpan)

Converts a dynamic value to a TimeSpan value.

System_CAPS_puboperatorSystem_CAPS_staticImplicit(Guid to DynamicValue^)

Casts a GUID value to a DynamicValue.

System_CAPS_puboperatorSystem_CAPS_staticImplicit(Int32 to DynamicValue^)

Casts an Int32 value to a DynamicValue.

System_CAPS_puboperatorSystem_CAPS_staticImplicit(Int64 to DynamicValue^)

Converts an Int64 value to a Dynamic Value.

System_CAPS_puboperatorSystem_CAPS_staticImplicit(String^ to DynamicValue^)

Casts a String value to a DynamicValue.

System_CAPS_puboperatorSystem_CAPS_staticImplicit(TimeSpan to DynamicValue^)

Converts a TimeSpan value to a Dynamic Value.

Return to top

DynamicValue Implicit Conversion (Boolean to DynamicValue^)

Casts a Boolean value to a DynamicValue.

public:
static operator DynamicValue^ (
	bool value
)

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 Implicit Conversion (DateTime to DynamicValue^)

Casts a DateTime value to a DynamicValue.

public:
static operator DynamicValue^ (
	DateTime value
)

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 Implicit Conversion (Double to DynamicValue^)

Casts a Double value to a DynamicValue.

public:
static operator DynamicValue^ (
	double value
)

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 Implicit Conversion (DynamicValue^ to Boolean)

Casts a dynamic value into a Boolean Value.

public:
static operator bool (
	DynamicValue^ dynamicValue
)

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 Implicit Conversion (DynamicValue^ to DateTime)

Converts a dynamic value to a DateTime value.

public:
static operator DateTime (
	DynamicValue^ dynamicValue
)

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 Implicit Conversion (DynamicValue^ to Double)

Converts a dynamic value to a Double value.

public:
static operator double (
	DynamicValue^ dynamicValue
)

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 Implicit Conversion (DynamicValue^ to Guid)

Converts a dynamic value to a Guid value.

public:
static operator Guid (
	DynamicValue^ dynamicValue
)

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 Implicit Conversion (DynamicValue^ to Int32)

Converts a dynamic value to an Int32 value.

public:
static operator int (
	DynamicValue^ dynamicValue
)

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 Implicit Conversion (DynamicValue^ to String^)

Converts a dynamic value to a String value.

public:
static operator String^ (
	DynamicValue^ dynamicValue
)

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 Implicit Conversion (DynamicValue^ to TimeSpan)

Converts a dynamic value to a TimeSpan value.

public:
static operator TimeSpan (
	DynamicValue^ dynamicValue
)

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 Implicit Conversion (Guid to DynamicValue^)

Casts a GUID value to a DynamicValue.

public:
static operator DynamicValue^ (
	Guid value
)

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 Implicit Conversion (Int32 to DynamicValue^)

Casts an Int32 value to a DynamicValue.

public:
static operator DynamicValue^ (
	int value
)

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 Implicit Conversion (Int64 to DynamicValue^)

Converts an Int64 value to a Dynamic Value.

public:
static operator DynamicValue^ (
	long long value
)

Parameters

value
Type: System::Int64

The value to convert.

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.

public:
static operator DynamicValue^ (
	String^ value
)

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 Implicit Conversion (TimeSpan to DynamicValue^)

Converts a TimeSpan value to a Dynamic Value.

public:
static operator DynamicValue^ (
	TimeSpan value
)

Parameters

value
Type: System::TimeSpan

The value to convert.

Return Value

Type: Microsoft.Activities::DynamicValue^

The converted Dynamic Value.

Return to top
Show: