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 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
}
} }