r1460@opsdev009 (orig r77478): dreiss | 2008-01-11 12:59:12 -0800
[amiethrift.git] / lib / csharp / src / Protocol / TType.cs
blob0badb3358a1a7d36d7a0292f22a08da14388ed31
1 //
2 // TType.cs
3 //
4 // Begin: Aug 19, 2007
5 // Authors:
6 // Todd Berman <tberman@imeem.com>
7 //
8 // Distributed under the Thrift Software License
9 //
10 // See accompanying file LICENSE or visit the Thrift site at:
11 // http://developers.facebook.com/thrift/using
13 using System;
14 using System.Collections.Generic;
15 using System.Text;
17 namespace Thrift.Protocol
19 public enum TType : byte
21 Stop = 0,
22 Void = 1,
23 Bool = 2,
24 Byte = 3,
25 Double = 4,
26 I16 = 6,
27 I32 = 8,
28 I64 = 10,
29 String = 11,
30 Struct = 12,
31 Map = 13,
32 Set = 14,
33 List = 15