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);
Applies to
Vertu í samstarfi við okkur á GitHub
Heimildina fyrir þetta efni er að finna á GitHub, þar sem þú getur líka búið til og farið yfir vandamál og sameinað beiðnir. Frekari upplýsingar er að finna í framlagshandbók okkar.