2 // This file is part of the LWES .NET Binding (LWES.net)
4 // COPYRIGHT© 2009, Phillip Clark (phillip[at*flitbit[dot*org)
5 // original .NET implementation
7 // LWES.net is free software: you can redistribute it and/or modify
8 // it under the terms of the Lesser GNU General Public License as published by
9 // the Free Software Foundation, either version 3 of the License, or
10 // (at your option) any later version.
12 // LWES.net is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // Lesser GNU General Public License for more details.
17 // You should have received a copy of the Lesser GNU General Public License
18 // along with LWES.net. If not, see <http://www.gnu.org/licenses/>.
25 /// Supported encodings
27 public enum SupportedEncoding
: short
30 /// Value indicating the ISO-8859-1 encoding.
34 /// Value indicating the UTF-8 encoding.
38 /// Value indicating the default encoding.
44 /// Tokens used in the Event Serialization Protocol
46 public enum TypeToken
: byte
49 /// Indicates a UInt16
53 /// Indicates an Int16
57 /// Indicates a UInt32
61 /// Indicates an Int32
65 /// Indicates a string
69 /// Indicates a IP address
73 /// Indicates an Int64
77 /// Indicates a UInt64
81 /// Indicates a boolean
85 /// Indicates the token type is undefined
87 UNDEFINED
= (byte)0xff,
93 /// Maximum defined value.
98 #endregion Enumerations