.NET Framework Class Library
ArgumentDirection Enumeration
Specifies the direction of data flow for an Argument.
Assembly: System.Activities (in System.Activities.dll)
Syntax
Visual Basic
Public Enumeration ArgumentDirection
C#
public enum ArgumentDirection
Visual C++
public enum class ArgumentDirection
F#
type ArgumentDirection
Members
| Member name | Description | |
|---|---|---|
| In | An Argument that represents the flow of data into a workflow or activity. | |
| Out | An Argument that represents the flow of data out of a workflow or activity. | |
| InOut | 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(Type, ArgumentDirection) method of the Argument class.
C#
Argument a = Argument.Create(typeof(string), ArgumentDirection.In);
Version Information
.NET Framework
Supported in: 4.NET Framework Client Profile
Supported in: 4Platforms
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also