git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665575
13f79535-47bb-0310-9956-
ffa450edef68
public struct TField
{
public TField(string name, TType type, short id)
+ :this()
{
Name = name;
Type = type;
public struct TList
{
public TList(TType elementType, int count)
+ :this()
{
ElementType = elementType;
Count = count;
public struct TMap
{
public TMap(TType keyType, TType valueType, int count)
+ :this()
{
KeyType = keyType;
ValueType = valueType;
public struct TMessage
{
public TMessage(string name, TMessageType type, int seqid)
+ :this()
{
Name = name;
Type = type;
public struct TSet
{
public TSet(TType elementType, int count)
+ :this()
{
ElementType = elementType;
Count = count;
public struct TStruct
{
public TStruct(string name)
+ :this()
{
Name = name;
}