Add missing documentation, and pull indentation in by one.
This commit is contained in:
parent
77241fdbb3
commit
57ba670952
1 changed files with 19 additions and 8 deletions
|
@ -25,14 +25,25 @@
|
||||||
|
|
||||||
namespace Bind.Structures
|
namespace Bind.Structures
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Enumarates the possible flows of a parameter (ie. is this parameter
|
||||||
|
/// used as input or as output?)
|
||||||
|
/// </summary>
|
||||||
|
public enum FlowDirection
|
||||||
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Enumarates the possible flows of a parameter (ie. is this parameter
|
/// No defined flow.
|
||||||
/// used as input or as output?)
|
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum FlowDirection
|
Undefined = 0,
|
||||||
{
|
|
||||||
Undefined = 0,
|
/// <summary>
|
||||||
In,
|
/// Input parameter.
|
||||||
Out
|
/// </summary>
|
||||||
}
|
In,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Output parameter, typically decorated with the out keyword.
|
||||||
|
/// </summary>
|
||||||
|
Out
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue