ArgumentDirection Enum
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.
Specifies the direction of data flow for an Argument.
public enum class ArgumentDirection
public enum ArgumentDirection
type ArgumentDirection =
Public Enum ArgumentDirection
- Inheritance
Fields
Name | Value | Description |
---|---|---|
In | 0 | An Argument that represents the flow of data into a workflow or activity. |
Out | 1 | An Argument that represents the flow of data out of a workflow or activity. |
InOut | 2 | An Argument that represents the flow of data into and 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);