Add missing documentation, and pull indentation in by one.

This commit is contained in:
Jarl Gullberg 2017-07-30 18:47:40 +02:00
parent 77241fdbb3
commit 57ba670952
No known key found for this signature in database
GPG key ID: 750FF6F6BDA72D23

View file

@ -25,14 +25,25 @@
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>
/// Enumarates the possible flows of a parameter (ie. is this parameter
/// used as input or as output?)
/// No defined flow.
/// </summary>
public enum FlowDirection
{
Undefined = 0,
In,
Out
}
Undefined = 0,
/// <summary>
/// Input parameter.
/// </summary>
In,
/// <summary>
/// Output parameter, typically decorated with the out keyword.
/// </summary>
Out
}
}