diff options
Diffstat (limited to '')
-rw-r--r-- | cs-dotnet/src/gatsboolean.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/cs-dotnet/src/gatsboolean.cs b/cs-dotnet/src/gatsboolean.cs index 11c8115..0fcc6e9 100644 --- a/cs-dotnet/src/gatsboolean.cs +++ b/cs-dotnet/src/gatsboolean.cs | |||
@@ -9,6 +9,15 @@ using System.IO; | |||
9 | 9 | ||
10 | namespace Com.Xagasoft.Gats | 10 | namespace Com.Xagasoft.Gats |
11 | { | 11 | { |
12 | /// <summary> | ||
13 | /// Encapsulates a single bool value. | ||
14 | /// </summary> | ||
15 | /// <remarks> | ||
16 | /// The boolean type is one of the simpler ones encoding-wise. Instead of | ||
17 | /// a single type specfiier in the encoded GATS format, it uses two, and | ||
18 | /// no payload. A '1' type specifier indicates a boolean value of true, and | ||
19 | /// a '0' type specfiier indicates a false. | ||
20 | /// </remarks> | ||
12 | public class GatsBoolean : GatsObject | 21 | public class GatsBoolean : GatsObject |
13 | { | 22 | { |
14 | public bool Value { get; set; } | 23 | public bool Value { get; set; } |