InArgument.CreateReference Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.