OutArgument<T>.Implicit Operator

Definition

Overloads

Implicit(Activity<Location<T>> to OutArgument<T>)

Initializes and returns a new OutArgument<T> constructed using the specified Activity<TResult>.

Implicit(DelegateArgument to OutArgument<T>)

Initializes and returns a new OutArgument<T> constructed using the specified DelegateArgument.

Implicit(Variable to OutArgument<T>)

Initializes and returns a new OutArgument<T> constructed using the specified Variable.

Implicit(Activity<Location<T>> to OutArgument<T>)

Initializes and returns a new OutArgument<T> constructed using the specified Activity<TResult>.

C#
public static implicit operator System.Activities.OutArgument<T>(System.Activities.Activity<System.Activities.Location<T>> expression);

Parameters

expression
Activity<Location<T>>

The value of the argument.

Returns

The new argument.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

Implicit(DelegateArgument to OutArgument<T>)

Initializes and returns a new OutArgument<T> constructed using the specified DelegateArgument.

C#
public static implicit operator System.Activities.OutArgument<T>(System.Activities.DelegateArgument delegateArgument);

Parameters

delegateArgument
DelegateArgument

The value of the argument.

Returns

The new argument.

Remarks

This is an implicit conversion.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

Implicit(Variable to OutArgument<T>)

Initializes and returns a new OutArgument<T> constructed using the specified Variable.

C#
public static implicit operator System.Activities.OutArgument<T>(System.Activities.Variable variable);

Parameters

variable
Variable

The value of the argument.

Returns

The new argument.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1