ArgumentDirection Enum

Definition

Specifies the direction of data flow for an Argument.

public enum class ArgumentDirection
public enum ArgumentDirection
type ArgumentDirection = 
Public Enum ArgumentDirection
Inheritance
ArgumentDirection

Fields

In 0

An Argument that represents the flow of data into a workflow or activity.

InOut 2

An Argument that represents the flow of data into and out of a workflow or activity.

Out 1

An Argument that represents the flow of data out of a workflow or activity.

Examples

In this example, an InArgument<T> of type String is created using the Create method of the Argument class.

Argument a = Argument.Create(typeof(string), ArgumentDirection.In);  

Applies to