InArgument.CreateReference Method

Definition

Creates a new InArgument that references the specified target argument using the specified referenced argument name.

Overloads

CreateReference(InArgument, String)

Creates a new InArgument that references the specified target InArgument using the specified referenced argument name.

CreateReference(InOutArgument, String)

Creates a new InArgument that references the specified target InOutArgument using the specified referenced argument name.

CreateReference(InArgument, String)

Creates a new InArgument that references the specified target InArgument using the specified referenced argument name.

public:
 static System::Activities::InArgument ^ CreateReference(System::Activities::InArgument ^ argumentToReference, System::String ^ referencedArgumentName);
public static System.Activities.InArgument CreateReference (System.Activities.InArgument argumentToReference, string referencedArgumentName);
static member CreateReference : System.Activities.InArgument * string -> System.Activities.InArgument
Public Shared Function CreateReference (argumentToReference As InArgument, referencedArgumentName As String) As InArgument

Parameters

argumentToReference
InArgument

The target in argument to reference.

referencedArgumentName
String

The name of the referenced argument.

Returns

A new in argument that references the specified target InArgument.

Applies to

CreateReference(InOutArgument, String)

Creates a new InArgument that references the specified target InOutArgument using the specified referenced argument name.

public:
 static System::Activities::InArgument ^ CreateReference(System::Activities::InOutArgument ^ argumentToReference, System::String ^ referencedArgumentName);
public static System.Activities.InArgument CreateReference (System.Activities.InOutArgument argumentToReference, string referencedArgumentName);
static member CreateReference : System.Activities.InOutArgument * string -> System.Activities.InArgument
Public Shared Function CreateReference (argumentToReference As InOutArgument, referencedArgumentName As String) As InArgument

Parameters

argumentToReference
InOutArgument

The target in/out argument to reference.

referencedArgumentName
String

The name of the referenced argument.

Returns

A new in argument that references the specified target InOutArgument.

Applies to