descriptor.cs 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated by a tool.
  4. //
  5. // Changes to this file may cause incorrect behavior and will be lost if
  6. // the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. // Generated from: descriptor.proto
  10. namespace google.protobuf
  11. {
  12. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name = @"FileDescriptorSet")]
  13. public partial class FileDescriptorSet : global::ProtoBuf.IExtensible
  14. {
  15. public global::System.Collections.Generic.List<string> comments;
  16. public FileDescriptorSet() { }
  17. private readonly global::System.Collections.Generic.List<google.protobuf.FileDescriptorProto> _file = new global::System.Collections.Generic.List<google.protobuf.FileDescriptorProto>();
  18. [global::ProtoBuf.ProtoMember(1, Name = @"file", DataFormat = global::ProtoBuf.DataFormat.Default)]
  19. public global::System.Collections.Generic.List<google.protobuf.FileDescriptorProto> file
  20. {
  21. get { return _file; }
  22. }
  23. private global::ProtoBuf.IExtension extensionObject;
  24. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  25. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  26. }
  27. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name = @"FileDescriptorProto")]
  28. public partial class FileDescriptorProto : global::ProtoBuf.IExtensible
  29. {
  30. public global::System.Collections.Generic.List<string> comments;
  31. public FileDescriptorProto() { }
  32. private string _name = "";
  33. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name = @"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  34. [global::System.ComponentModel.DefaultValue("")]
  35. public string name
  36. {
  37. get { return _name; }
  38. set { _name = value; }
  39. }
  40. private string _package = "";
  41. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name = @"package", DataFormat = global::ProtoBuf.DataFormat.Default)]
  42. [global::System.ComponentModel.DefaultValue("")]
  43. public string package
  44. {
  45. get { return _package; }
  46. set { _package = value; }
  47. }
  48. private readonly global::System.Collections.Generic.List<string> _dependency = new global::System.Collections.Generic.List<string>();
  49. [global::ProtoBuf.ProtoMember(3, Name = @"dependency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  50. public global::System.Collections.Generic.List<string> dependency
  51. {
  52. get { return _dependency; }
  53. }
  54. private readonly global::System.Collections.Generic.List<google.protobuf.DescriptorProto> _message_type = new global::System.Collections.Generic.List<google.protobuf.DescriptorProto>();
  55. [global::ProtoBuf.ProtoMember(4, Name = @"message_type", DataFormat = global::ProtoBuf.DataFormat.Default)]
  56. public global::System.Collections.Generic.List<google.protobuf.DescriptorProto> message_type
  57. {
  58. get { return _message_type; }
  59. }
  60. private readonly global::System.Collections.Generic.List<google.protobuf.EnumDescriptorProto> _enum_type = new global::System.Collections.Generic.List<google.protobuf.EnumDescriptorProto>();
  61. [global::ProtoBuf.ProtoMember(5, Name = @"enum_type", DataFormat = global::ProtoBuf.DataFormat.Default)]
  62. public global::System.Collections.Generic.List<google.protobuf.EnumDescriptorProto> enum_type
  63. {
  64. get { return _enum_type; }
  65. }
  66. private readonly global::System.Collections.Generic.List<google.protobuf.ServiceDescriptorProto> _service = new global::System.Collections.Generic.List<google.protobuf.ServiceDescriptorProto>();
  67. [global::ProtoBuf.ProtoMember(6, Name = @"service", DataFormat = global::ProtoBuf.DataFormat.Default)]
  68. public global::System.Collections.Generic.List<google.protobuf.ServiceDescriptorProto> service
  69. {
  70. get { return _service; }
  71. }
  72. private readonly global::System.Collections.Generic.List<google.protobuf.FieldDescriptorProto> _extension = new global::System.Collections.Generic.List<google.protobuf.FieldDescriptorProto>();
  73. [global::ProtoBuf.ProtoMember(7, Name = @"extension", DataFormat = global::ProtoBuf.DataFormat.Default)]
  74. public global::System.Collections.Generic.List<google.protobuf.FieldDescriptorProto> extension
  75. {
  76. get { return _extension; }
  77. }
  78. private google.protobuf.FileOptions _options = null;
  79. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name = @"options", DataFormat = global::ProtoBuf.DataFormat.Default)]
  80. [global::System.ComponentModel.DefaultValue(null)]
  81. public google.protobuf.FileOptions options
  82. {
  83. get { return _options; }
  84. set { _options = value; }
  85. }
  86. private google.protobuf.SourceCodeInfo _source_code_info = null;
  87. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name = @"source_code_info", DataFormat = global::ProtoBuf.DataFormat.Default)]
  88. [global::System.ComponentModel.DefaultValue(null)]
  89. public google.protobuf.SourceCodeInfo source_code_info
  90. {
  91. get { return _source_code_info; }
  92. set { _source_code_info = value; }
  93. }
  94. private global::ProtoBuf.IExtension extensionObject;
  95. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  96. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  97. }
  98. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name = @"DescriptorProto")]
  99. public partial class DescriptorProto : global::ProtoBuf.IExtensible
  100. {
  101. public global::System.Collections.Generic.List<string> comments;
  102. public DescriptorProto() { }
  103. private string _name = "";
  104. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name = @"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  105. [global::System.ComponentModel.DefaultValue("")]
  106. public string name
  107. {
  108. get { return _name; }
  109. set { _name = value; }
  110. }
  111. private readonly global::System.Collections.Generic.List<google.protobuf.FieldDescriptorProto> _field = new global::System.Collections.Generic.List<google.protobuf.FieldDescriptorProto>();
  112. [global::ProtoBuf.ProtoMember(2, Name = @"field", DataFormat = global::ProtoBuf.DataFormat.Default)]
  113. public global::System.Collections.Generic.List<google.protobuf.FieldDescriptorProto> field
  114. {
  115. get { return _field; }
  116. }
  117. private readonly global::System.Collections.Generic.List<google.protobuf.FieldDescriptorProto> _extension = new global::System.Collections.Generic.List<google.protobuf.FieldDescriptorProto>();
  118. [global::ProtoBuf.ProtoMember(6, Name = @"extension", DataFormat = global::ProtoBuf.DataFormat.Default)]
  119. public global::System.Collections.Generic.List<google.protobuf.FieldDescriptorProto> extension
  120. {
  121. get { return _extension; }
  122. }
  123. private readonly global::System.Collections.Generic.List<google.protobuf.DescriptorProto> _nested_type = new global::System.Collections.Generic.List<google.protobuf.DescriptorProto>();
  124. [global::ProtoBuf.ProtoMember(3, Name = @"nested_type", DataFormat = global::ProtoBuf.DataFormat.Default)]
  125. public global::System.Collections.Generic.List<google.protobuf.DescriptorProto> nested_type
  126. {
  127. get { return _nested_type; }
  128. }
  129. private readonly global::System.Collections.Generic.List<google.protobuf.EnumDescriptorProto> _enum_type = new global::System.Collections.Generic.List<google.protobuf.EnumDescriptorProto>();
  130. [global::ProtoBuf.ProtoMember(4, Name = @"enum_type", DataFormat = global::ProtoBuf.DataFormat.Default)]
  131. public global::System.Collections.Generic.List<google.protobuf.EnumDescriptorProto> enum_type
  132. {
  133. get { return _enum_type; }
  134. }
  135. private readonly global::System.Collections.Generic.List<google.protobuf.DescriptorProto.ExtensionRange> _extension_range = new global::System.Collections.Generic.List<google.protobuf.DescriptorProto.ExtensionRange>();
  136. [global::ProtoBuf.ProtoMember(5, Name = @"extension_range", DataFormat = global::ProtoBuf.DataFormat.Default)]
  137. public global::System.Collections.Generic.List<google.protobuf.DescriptorProto.ExtensionRange> extension_range
  138. {
  139. get { return _extension_range; }
  140. }
  141. private google.protobuf.MessageOptions _options = null;
  142. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name = @"options", DataFormat = global::ProtoBuf.DataFormat.Default)]
  143. [global::System.ComponentModel.DefaultValue(null)]
  144. public google.protobuf.MessageOptions options
  145. {
  146. get { return _options; }
  147. set { _options = value; }
  148. }
  149. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name = @"ExtensionRange")]
  150. public partial class ExtensionRange : global::ProtoBuf.IExtensible
  151. {
  152. public ExtensionRange() { }
  153. private int _start = default(int);
  154. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name = @"start", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  155. [global::System.ComponentModel.DefaultValue(default(int))]
  156. public int start
  157. {
  158. get { return _start; }
  159. set { _start = value; }
  160. }
  161. private int _end = default(int);
  162. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name = @"end", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  163. [global::System.ComponentModel.DefaultValue(default(int))]
  164. public int end
  165. {
  166. get { return _end; }
  167. set { _end = value; }
  168. }
  169. private global::ProtoBuf.IExtension extensionObject;
  170. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  171. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  172. }
  173. private global::ProtoBuf.IExtension extensionObject;
  174. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  175. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  176. }
  177. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name = @"FieldDescriptorProto")]
  178. public partial class FieldDescriptorProto : global::ProtoBuf.IExtensible
  179. {
  180. public global::System.Collections.Generic.List<string> comments;
  181. public FieldDescriptorProto() { }
  182. private string _name = "";
  183. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name = @"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  184. [global::System.ComponentModel.DefaultValue("")]
  185. public string name
  186. {
  187. get { return _name; }
  188. set { _name = value; }
  189. }
  190. private int _number = default(int);
  191. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name = @"number", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  192. [global::System.ComponentModel.DefaultValue(default(int))]
  193. public int number
  194. {
  195. get { return _number; }
  196. set { _number = value; }
  197. }
  198. private google.protobuf.FieldDescriptorProto.Label _label = google.protobuf.FieldDescriptorProto.Label.LABEL_OPTIONAL;
  199. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name = @"label", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  200. [global::System.ComponentModel.DefaultValue(google.protobuf.FieldDescriptorProto.Label.LABEL_OPTIONAL)]
  201. public google.protobuf.FieldDescriptorProto.Label label
  202. {
  203. get { return _label; }
  204. set { _label = value; }
  205. }
  206. private google.protobuf.FieldDescriptorProto.Type _type = google.protobuf.FieldDescriptorProto.Type.TYPE_DOUBLE;
  207. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name = @"type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  208. [global::System.ComponentModel.DefaultValue(google.protobuf.FieldDescriptorProto.Type.TYPE_DOUBLE)]
  209. public google.protobuf.FieldDescriptorProto.Type type
  210. {
  211. get { return _type; }
  212. set { _type = value; }
  213. }
  214. private string _type_name = "";
  215. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name = @"type_name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  216. [global::System.ComponentModel.DefaultValue("")]
  217. public string type_name
  218. {
  219. get { return _type_name; }
  220. set { _type_name = value; }
  221. }
  222. private string _extendee = "";
  223. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name = @"extendee", DataFormat = global::ProtoBuf.DataFormat.Default)]
  224. [global::System.ComponentModel.DefaultValue("")]
  225. public string extendee
  226. {
  227. get { return _extendee; }
  228. set { _extendee = value; }
  229. }
  230. private string _default_value = "";
  231. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name = @"default_value", DataFormat = global::ProtoBuf.DataFormat.Default)]
  232. [global::System.ComponentModel.DefaultValue("")]
  233. public string default_value
  234. {
  235. get { return _default_value; }
  236. set { _default_value = value; }
  237. }
  238. private google.protobuf.FieldOptions _options = null;
  239. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name = @"options", DataFormat = global::ProtoBuf.DataFormat.Default)]
  240. [global::System.ComponentModel.DefaultValue(null)]
  241. public google.protobuf.FieldOptions options
  242. {
  243. get { return _options; }
  244. set { _options = value; }
  245. }
  246. [global::ProtoBuf.ProtoContract(Name = @"Type")]
  247. public enum Type
  248. {
  249. [global::ProtoBuf.ProtoEnum(Name = @"TYPE_DOUBLE", Value = 1)]
  250. TYPE_DOUBLE = 1,
  251. [global::ProtoBuf.ProtoEnum(Name = @"TYPE_FLOAT", Value = 2)]
  252. TYPE_FLOAT = 2,
  253. [global::ProtoBuf.ProtoEnum(Name = @"TYPE_INT64", Value = 3)]
  254. TYPE_INT64 = 3,
  255. [global::ProtoBuf.ProtoEnum(Name = @"TYPE_UINT64", Value = 4)]
  256. TYPE_UINT64 = 4,
  257. [global::ProtoBuf.ProtoEnum(Name = @"TYPE_INT32", Value = 5)]
  258. TYPE_INT32 = 5,
  259. [global::ProtoBuf.ProtoEnum(Name = @"TYPE_FIXED64", Value = 6)]
  260. TYPE_FIXED64 = 6,
  261. [global::ProtoBuf.ProtoEnum(Name = @"TYPE_FIXED32", Value = 7)]
  262. TYPE_FIXED32 = 7,
  263. [global::ProtoBuf.ProtoEnum(Name = @"TYPE_BOOL", Value = 8)]
  264. TYPE_BOOL = 8,
  265. [global::ProtoBuf.ProtoEnum(Name = @"TYPE_STRING", Value = 9)]
  266. TYPE_STRING = 9,
  267. [global::ProtoBuf.ProtoEnum(Name = @"TYPE_GROUP", Value = 10)]
  268. TYPE_GROUP = 10,
  269. [global::ProtoBuf.ProtoEnum(Name = @"TYPE_MESSAGE", Value = 11)]
  270. TYPE_MESSAGE = 11,
  271. [global::ProtoBuf.ProtoEnum(Name = @"TYPE_BYTES", Value = 12)]
  272. TYPE_BYTES = 12,
  273. [global::ProtoBuf.ProtoEnum(Name = @"TYPE_UINT32", Value = 13)]
  274. TYPE_UINT32 = 13,
  275. [global::ProtoBuf.ProtoEnum(Name = @"TYPE_ENUM", Value = 14)]
  276. TYPE_ENUM = 14,
  277. [global::ProtoBuf.ProtoEnum(Name = @"TYPE_SFIXED32", Value = 15)]
  278. TYPE_SFIXED32 = 15,
  279. [global::ProtoBuf.ProtoEnum(Name = @"TYPE_SFIXED64", Value = 16)]
  280. TYPE_SFIXED64 = 16,
  281. [global::ProtoBuf.ProtoEnum(Name = @"TYPE_SINT32", Value = 17)]
  282. TYPE_SINT32 = 17,
  283. [global::ProtoBuf.ProtoEnum(Name = @"TYPE_SINT64", Value = 18)]
  284. TYPE_SINT64 = 18
  285. }
  286. [global::ProtoBuf.ProtoContract(Name = @"Label")]
  287. public enum Label
  288. {
  289. [global::ProtoBuf.ProtoEnum(Name = @"LABEL_OPTIONAL", Value = 1)]
  290. LABEL_OPTIONAL = 1,
  291. [global::ProtoBuf.ProtoEnum(Name = @"LABEL_REQUIRED", Value = 2)]
  292. LABEL_REQUIRED = 2,
  293. [global::ProtoBuf.ProtoEnum(Name = @"LABEL_REPEATED", Value = 3)]
  294. LABEL_REPEATED = 3
  295. }
  296. private global::ProtoBuf.IExtension extensionObject;
  297. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  298. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  299. }
  300. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name = @"EnumDescriptorProto")]
  301. public partial class EnumDescriptorProto : global::ProtoBuf.IExtensible
  302. {
  303. public global::System.Collections.Generic.List<string> comments;
  304. public EnumDescriptorProto() { }
  305. private string _name = "";
  306. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name = @"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  307. [global::System.ComponentModel.DefaultValue("")]
  308. public string name
  309. {
  310. get { return _name; }
  311. set { _name = value; }
  312. }
  313. private readonly global::System.Collections.Generic.List<google.protobuf.EnumValueDescriptorProto> _value = new global::System.Collections.Generic.List<google.protobuf.EnumValueDescriptorProto>();
  314. [global::ProtoBuf.ProtoMember(2, Name = @"value", DataFormat = global::ProtoBuf.DataFormat.Default)]
  315. public global::System.Collections.Generic.List<google.protobuf.EnumValueDescriptorProto> value
  316. {
  317. get { return _value; }
  318. }
  319. private google.protobuf.EnumOptions _options = null;
  320. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name = @"options", DataFormat = global::ProtoBuf.DataFormat.Default)]
  321. [global::System.ComponentModel.DefaultValue(null)]
  322. public google.protobuf.EnumOptions options
  323. {
  324. get { return _options; }
  325. set { _options = value; }
  326. }
  327. private global::ProtoBuf.IExtension extensionObject;
  328. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  329. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  330. }
  331. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name = @"EnumValueDescriptorProto")]
  332. public partial class EnumValueDescriptorProto : global::ProtoBuf.IExtensible
  333. {
  334. public global::System.Collections.Generic.List<string> comments;
  335. public EnumValueDescriptorProto() { }
  336. private string _name = "";
  337. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name = @"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  338. [global::System.ComponentModel.DefaultValue("")]
  339. public string name
  340. {
  341. get { return _name; }
  342. set { _name = value; }
  343. }
  344. private int _number = default(int);
  345. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name = @"number", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  346. [global::System.ComponentModel.DefaultValue(default(int))]
  347. public int number
  348. {
  349. get { return _number; }
  350. set { _number = value; }
  351. }
  352. private google.protobuf.EnumValueOptions _options = null;
  353. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name = @"options", DataFormat = global::ProtoBuf.DataFormat.Default)]
  354. [global::System.ComponentModel.DefaultValue(null)]
  355. public google.protobuf.EnumValueOptions options
  356. {
  357. get { return _options; }
  358. set { _options = value; }
  359. }
  360. private global::ProtoBuf.IExtension extensionObject;
  361. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  362. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  363. }
  364. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name = @"ServiceDescriptorProto")]
  365. public partial class ServiceDescriptorProto : global::ProtoBuf.IExtensible
  366. {
  367. public global::System.Collections.Generic.List<string> comments;
  368. public ServiceDescriptorProto() { }
  369. private string _name = "";
  370. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name = @"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  371. [global::System.ComponentModel.DefaultValue("")]
  372. public string name
  373. {
  374. get { return _name; }
  375. set { _name = value; }
  376. }
  377. private readonly global::System.Collections.Generic.List<google.protobuf.MethodDescriptorProto> _method = new global::System.Collections.Generic.List<google.protobuf.MethodDescriptorProto>();
  378. [global::ProtoBuf.ProtoMember(2, Name = @"method", DataFormat = global::ProtoBuf.DataFormat.Default)]
  379. public global::System.Collections.Generic.List<google.protobuf.MethodDescriptorProto> method
  380. {
  381. get { return _method; }
  382. }
  383. private google.protobuf.ServiceOptions _options = null;
  384. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name = @"options", DataFormat = global::ProtoBuf.DataFormat.Default)]
  385. [global::System.ComponentModel.DefaultValue(null)]
  386. public google.protobuf.ServiceOptions options
  387. {
  388. get { return _options; }
  389. set { _options = value; }
  390. }
  391. private global::ProtoBuf.IExtension extensionObject;
  392. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  393. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  394. }
  395. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name = @"MethodDescriptorProto")]
  396. public partial class MethodDescriptorProto : global::ProtoBuf.IExtensible
  397. {
  398. public global::System.Collections.Generic.List<string> comments;
  399. public MethodDescriptorProto() { }
  400. private string _name = "";
  401. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name = @"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  402. [global::System.ComponentModel.DefaultValue("")]
  403. public string name
  404. {
  405. get { return _name; }
  406. set { _name = value; }
  407. }
  408. private string _input_type = "";
  409. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name = @"input_type", DataFormat = global::ProtoBuf.DataFormat.Default)]
  410. [global::System.ComponentModel.DefaultValue("")]
  411. public string input_type
  412. {
  413. get { return _input_type; }
  414. set { _input_type = value; }
  415. }
  416. private string _output_type = "";
  417. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name = @"output_type", DataFormat = global::ProtoBuf.DataFormat.Default)]
  418. [global::System.ComponentModel.DefaultValue("")]
  419. public string output_type
  420. {
  421. get { return _output_type; }
  422. set { _output_type = value; }
  423. }
  424. private google.protobuf.MethodOptions _options = null;
  425. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name = @"options", DataFormat = global::ProtoBuf.DataFormat.Default)]
  426. [global::System.ComponentModel.DefaultValue(null)]
  427. public google.protobuf.MethodOptions options
  428. {
  429. get { return _options; }
  430. set { _options = value; }
  431. }
  432. private global::ProtoBuf.IExtension extensionObject;
  433. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  434. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  435. }
  436. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name = @"FileOptions")]
  437. public partial class FileOptions : global::ProtoBuf.IExtensible
  438. {
  439. public global::System.Collections.Generic.List<string> comments;
  440. public FileOptions() { }
  441. private string _java_package = "";
  442. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name = @"java_package", DataFormat = global::ProtoBuf.DataFormat.Default)]
  443. [global::System.ComponentModel.DefaultValue("")]
  444. public string java_package
  445. {
  446. get { return _java_package; }
  447. set { _java_package = value; }
  448. }
  449. private string _java_outer_classname = "";
  450. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name = @"java_outer_classname", DataFormat = global::ProtoBuf.DataFormat.Default)]
  451. [global::System.ComponentModel.DefaultValue("")]
  452. public string java_outer_classname
  453. {
  454. get { return _java_outer_classname; }
  455. set { _java_outer_classname = value; }
  456. }
  457. private bool _java_multiple_files = (bool)false;
  458. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name = @"java_multiple_files", DataFormat = global::ProtoBuf.DataFormat.Default)]
  459. [global::System.ComponentModel.DefaultValue((bool)false)]
  460. public bool java_multiple_files
  461. {
  462. get { return _java_multiple_files; }
  463. set { _java_multiple_files = value; }
  464. }
  465. private bool _java_generate_equals_and_hash = (bool)false;
  466. [global::ProtoBuf.ProtoMember(20, IsRequired = false, Name = @"java_generate_equals_and_hash", DataFormat = global::ProtoBuf.DataFormat.Default)]
  467. [global::System.ComponentModel.DefaultValue((bool)false)]
  468. public bool java_generate_equals_and_hash
  469. {
  470. get { return _java_generate_equals_and_hash; }
  471. set { _java_generate_equals_and_hash = value; }
  472. }
  473. private google.protobuf.FileOptions.OptimizeMode _optimize_for = google.protobuf.FileOptions.OptimizeMode.SPEED;
  474. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name = @"optimize_for", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  475. [global::System.ComponentModel.DefaultValue(google.protobuf.FileOptions.OptimizeMode.SPEED)]
  476. public google.protobuf.FileOptions.OptimizeMode optimize_for
  477. {
  478. get { return _optimize_for; }
  479. set { _optimize_for = value; }
  480. }
  481. private bool _cc_generic_services = (bool)false;
  482. [global::ProtoBuf.ProtoMember(16, IsRequired = false, Name = @"cc_generic_services", DataFormat = global::ProtoBuf.DataFormat.Default)]
  483. [global::System.ComponentModel.DefaultValue((bool)false)]
  484. public bool cc_generic_services
  485. {
  486. get { return _cc_generic_services; }
  487. set { _cc_generic_services = value; }
  488. }
  489. private bool _java_generic_services = (bool)false;
  490. [global::ProtoBuf.ProtoMember(17, IsRequired = false, Name = @"java_generic_services", DataFormat = global::ProtoBuf.DataFormat.Default)]
  491. [global::System.ComponentModel.DefaultValue((bool)false)]
  492. public bool java_generic_services
  493. {
  494. get { return _java_generic_services; }
  495. set { _java_generic_services = value; }
  496. }
  497. private bool _py_generic_services = (bool)false;
  498. [global::ProtoBuf.ProtoMember(18, IsRequired = false, Name = @"py_generic_services", DataFormat = global::ProtoBuf.DataFormat.Default)]
  499. [global::System.ComponentModel.DefaultValue((bool)false)]
  500. public bool py_generic_services
  501. {
  502. get { return _py_generic_services; }
  503. set { _py_generic_services = value; }
  504. }
  505. private readonly global::System.Collections.Generic.List<google.protobuf.UninterpretedOption> _uninterpreted_option = new global::System.Collections.Generic.List<google.protobuf.UninterpretedOption>();
  506. [global::ProtoBuf.ProtoMember(999, Name = @"uninterpreted_option", DataFormat = global::ProtoBuf.DataFormat.Default)]
  507. public global::System.Collections.Generic.List<google.protobuf.UninterpretedOption> uninterpreted_option
  508. {
  509. get { return _uninterpreted_option; }
  510. }
  511. [global::ProtoBuf.ProtoContract(Name = @"OptimizeMode")]
  512. public enum OptimizeMode
  513. {
  514. [global::ProtoBuf.ProtoEnum(Name = @"SPEED", Value = 1)]
  515. SPEED = 1,
  516. [global::ProtoBuf.ProtoEnum(Name = @"CODE_SIZE", Value = 2)]
  517. CODE_SIZE = 2,
  518. [global::ProtoBuf.ProtoEnum(Name = @"LITE_RUNTIME", Value = 3)]
  519. LITE_RUNTIME = 3
  520. }
  521. private global::ProtoBuf.IExtension extensionObject;
  522. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  523. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  524. }
  525. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name = @"MessageOptions")]
  526. public partial class MessageOptions : global::ProtoBuf.IExtensible
  527. {
  528. public MessageOptions() { }
  529. private bool _message_set_wire_format = (bool)false;
  530. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name = @"message_set_wire_format", DataFormat = global::ProtoBuf.DataFormat.Default)]
  531. [global::System.ComponentModel.DefaultValue((bool)false)]
  532. public bool message_set_wire_format
  533. {
  534. get { return _message_set_wire_format; }
  535. set { _message_set_wire_format = value; }
  536. }
  537. private bool _no_standard_descriptor_accessor = (bool)false;
  538. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name = @"no_standard_descriptor_accessor", DataFormat = global::ProtoBuf.DataFormat.Default)]
  539. [global::System.ComponentModel.DefaultValue((bool)false)]
  540. public bool no_standard_descriptor_accessor
  541. {
  542. get { return _no_standard_descriptor_accessor; }
  543. set { _no_standard_descriptor_accessor = value; }
  544. }
  545. private readonly global::System.Collections.Generic.List<google.protobuf.UninterpretedOption> _uninterpreted_option = new global::System.Collections.Generic.List<google.protobuf.UninterpretedOption>();
  546. [global::ProtoBuf.ProtoMember(999, Name = @"uninterpreted_option", DataFormat = global::ProtoBuf.DataFormat.Default)]
  547. public global::System.Collections.Generic.List<google.protobuf.UninterpretedOption> uninterpreted_option
  548. {
  549. get { return _uninterpreted_option; }
  550. }
  551. private global::ProtoBuf.IExtension extensionObject;
  552. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  553. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  554. }
  555. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name = @"FieldOptions")]
  556. public partial class FieldOptions : global::ProtoBuf.IExtensible
  557. {
  558. public FieldOptions() { }
  559. private google.protobuf.FieldOptions.CType _ctype = google.protobuf.FieldOptions.CType.STRING;
  560. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name = @"ctype", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  561. [global::System.ComponentModel.DefaultValue(google.protobuf.FieldOptions.CType.STRING)]
  562. public google.protobuf.FieldOptions.CType ctype
  563. {
  564. get { return _ctype; }
  565. set { _ctype = value; }
  566. }
  567. private bool _packed = default(bool);
  568. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name = @"packed", DataFormat = global::ProtoBuf.DataFormat.Default)]
  569. [global::System.ComponentModel.DefaultValue(default(bool))]
  570. public bool packed
  571. {
  572. get { return _packed; }
  573. set { _packed = value; }
  574. }
  575. private bool _deprecated = (bool)false;
  576. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name = @"deprecated", DataFormat = global::ProtoBuf.DataFormat.Default)]
  577. [global::System.ComponentModel.DefaultValue((bool)false)]
  578. public bool deprecated
  579. {
  580. get { return _deprecated; }
  581. set { _deprecated = value; }
  582. }
  583. private string _experimental_map_key = "";
  584. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name = @"experimental_map_key", DataFormat = global::ProtoBuf.DataFormat.Default)]
  585. [global::System.ComponentModel.DefaultValue("")]
  586. public string experimental_map_key
  587. {
  588. get { return _experimental_map_key; }
  589. set { _experimental_map_key = value; }
  590. }
  591. private readonly global::System.Collections.Generic.List<google.protobuf.UninterpretedOption> _uninterpreted_option = new global::System.Collections.Generic.List<google.protobuf.UninterpretedOption>();
  592. [global::ProtoBuf.ProtoMember(999, Name = @"uninterpreted_option", DataFormat = global::ProtoBuf.DataFormat.Default)]
  593. public global::System.Collections.Generic.List<google.protobuf.UninterpretedOption> uninterpreted_option
  594. {
  595. get { return _uninterpreted_option; }
  596. }
  597. [global::ProtoBuf.ProtoContract(Name = @"CType")]
  598. public enum CType
  599. {
  600. [global::ProtoBuf.ProtoEnum(Name = @"STRING", Value = 0)]
  601. STRING = 0,
  602. [global::ProtoBuf.ProtoEnum(Name = @"CORD", Value = 1)]
  603. CORD = 1,
  604. [global::ProtoBuf.ProtoEnum(Name = @"STRING_PIECE", Value = 2)]
  605. STRING_PIECE = 2
  606. }
  607. private global::ProtoBuf.IExtension extensionObject;
  608. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  609. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  610. }
  611. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name = @"EnumOptions")]
  612. public partial class EnumOptions : global::ProtoBuf.IExtensible
  613. {
  614. public EnumOptions() { }
  615. private readonly global::System.Collections.Generic.List<google.protobuf.UninterpretedOption> _uninterpreted_option = new global::System.Collections.Generic.List<google.protobuf.UninterpretedOption>();
  616. [global::ProtoBuf.ProtoMember(999, Name = @"uninterpreted_option", DataFormat = global::ProtoBuf.DataFormat.Default)]
  617. public global::System.Collections.Generic.List<google.protobuf.UninterpretedOption> uninterpreted_option
  618. {
  619. get { return _uninterpreted_option; }
  620. }
  621. private global::ProtoBuf.IExtension extensionObject;
  622. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  623. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  624. }
  625. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name = @"EnumValueOptions")]
  626. public partial class EnumValueOptions : global::ProtoBuf.IExtensible
  627. {
  628. public EnumValueOptions() { }
  629. private readonly global::System.Collections.Generic.List<google.protobuf.UninterpretedOption> _uninterpreted_option = new global::System.Collections.Generic.List<google.protobuf.UninterpretedOption>();
  630. [global::ProtoBuf.ProtoMember(999, Name = @"uninterpreted_option", DataFormat = global::ProtoBuf.DataFormat.Default)]
  631. public global::System.Collections.Generic.List<google.protobuf.UninterpretedOption> uninterpreted_option
  632. {
  633. get { return _uninterpreted_option; }
  634. }
  635. private global::ProtoBuf.IExtension extensionObject;
  636. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  637. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  638. }
  639. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name = @"ServiceOptions")]
  640. public partial class ServiceOptions : global::ProtoBuf.IExtensible
  641. {
  642. public ServiceOptions() { }
  643. private readonly global::System.Collections.Generic.List<google.protobuf.UninterpretedOption> _uninterpreted_option = new global::System.Collections.Generic.List<google.protobuf.UninterpretedOption>();
  644. [global::ProtoBuf.ProtoMember(999, Name = @"uninterpreted_option", DataFormat = global::ProtoBuf.DataFormat.Default)]
  645. public global::System.Collections.Generic.List<google.protobuf.UninterpretedOption> uninterpreted_option
  646. {
  647. get { return _uninterpreted_option; }
  648. }
  649. private global::ProtoBuf.IExtension extensionObject;
  650. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  651. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  652. }
  653. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name = @"MethodOptions")]
  654. public partial class MethodOptions : global::ProtoBuf.IExtensible
  655. {
  656. public MethodOptions() { }
  657. private readonly global::System.Collections.Generic.List<google.protobuf.UninterpretedOption> _uninterpreted_option = new global::System.Collections.Generic.List<google.protobuf.UninterpretedOption>();
  658. [global::ProtoBuf.ProtoMember(999, Name = @"uninterpreted_option", DataFormat = global::ProtoBuf.DataFormat.Default)]
  659. public global::System.Collections.Generic.List<google.protobuf.UninterpretedOption> uninterpreted_option
  660. {
  661. get { return _uninterpreted_option; }
  662. }
  663. private global::ProtoBuf.IExtension extensionObject;
  664. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  665. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  666. }
  667. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name = @"UninterpretedOption")]
  668. public partial class UninterpretedOption : global::ProtoBuf.IExtensible
  669. {
  670. public UninterpretedOption() { }
  671. private readonly global::System.Collections.Generic.List<google.protobuf.UninterpretedOption.NamePart> _name = new global::System.Collections.Generic.List<google.protobuf.UninterpretedOption.NamePart>();
  672. [global::ProtoBuf.ProtoMember(2, Name = @"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  673. public global::System.Collections.Generic.List<google.protobuf.UninterpretedOption.NamePart> name
  674. {
  675. get { return _name; }
  676. }
  677. private string _identifier_value = "";
  678. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name = @"identifier_value", DataFormat = global::ProtoBuf.DataFormat.Default)]
  679. [global::System.ComponentModel.DefaultValue("")]
  680. public string identifier_value
  681. {
  682. get { return _identifier_value; }
  683. set { _identifier_value = value; }
  684. }
  685. private ulong _positive_int_value = default(ulong);
  686. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name = @"positive_int_value", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  687. [global::System.ComponentModel.DefaultValue(default(ulong))]
  688. public ulong positive_int_value
  689. {
  690. get { return _positive_int_value; }
  691. set { _positive_int_value = value; }
  692. }
  693. private long _negative_int_value = default(long);
  694. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name = @"negative_int_value", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  695. [global::System.ComponentModel.DefaultValue(default(long))]
  696. public long negative_int_value
  697. {
  698. get { return _negative_int_value; }
  699. set { _negative_int_value = value; }
  700. }
  701. private double _double_value = default(double);
  702. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name = @"double_value", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  703. [global::System.ComponentModel.DefaultValue(default(double))]
  704. public double double_value
  705. {
  706. get { return _double_value; }
  707. set { _double_value = value; }
  708. }
  709. private byte[] _string_value = null;
  710. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name = @"string_value", DataFormat = global::ProtoBuf.DataFormat.Default)]
  711. [global::System.ComponentModel.DefaultValue(null)]
  712. public byte[] string_value
  713. {
  714. get { return _string_value; }
  715. set { _string_value = value; }
  716. }
  717. private string _aggregate_value = "";
  718. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name = @"aggregate_value", DataFormat = global::ProtoBuf.DataFormat.Default)]
  719. [global::System.ComponentModel.DefaultValue("")]
  720. public string aggregate_value
  721. {
  722. get { return _aggregate_value; }
  723. set { _aggregate_value = value; }
  724. }
  725. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name = @"NamePart")]
  726. public partial class NamePart : global::ProtoBuf.IExtensible
  727. {
  728. public NamePart() { }
  729. private string _name_part;
  730. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name = @"name_part", DataFormat = global::ProtoBuf.DataFormat.Default)]
  731. public string name_part
  732. {
  733. get { return _name_part; }
  734. set { _name_part = value; }
  735. }
  736. private bool _is_extension;
  737. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name = @"is_extension", DataFormat = global::ProtoBuf.DataFormat.Default)]
  738. public bool is_extension
  739. {
  740. get { return _is_extension; }
  741. set { _is_extension = value; }
  742. }
  743. private global::ProtoBuf.IExtension extensionObject;
  744. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  745. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  746. }
  747. private global::ProtoBuf.IExtension extensionObject;
  748. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  749. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  750. }
  751. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name = @"SourceCodeInfo")]
  752. public partial class SourceCodeInfo : global::ProtoBuf.IExtensible
  753. {
  754. public SourceCodeInfo() { }
  755. private readonly global::System.Collections.Generic.List<google.protobuf.SourceCodeInfo.Location> _location = new global::System.Collections.Generic.List<google.protobuf.SourceCodeInfo.Location>();
  756. [global::ProtoBuf.ProtoMember(1, Name = @"location", DataFormat = global::ProtoBuf.DataFormat.Default)]
  757. public global::System.Collections.Generic.List<google.protobuf.SourceCodeInfo.Location> location
  758. {
  759. get { return _location; }
  760. }
  761. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name = @"Location")]
  762. public partial class Location : global::ProtoBuf.IExtensible
  763. {
  764. public Location() { }
  765. private string _leading_comments = "";
  766. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name = @"leading_comments", DataFormat = global::ProtoBuf.DataFormat.Default)]
  767. [global::System.ComponentModel.DefaultValue("")]
  768. public string leading_comments
  769. {
  770. get { return _leading_comments; }
  771. set { _leading_comments = value; }
  772. }
  773. private readonly global::System.Collections.Generic.List<int> _path = new global::System.Collections.Generic.List<int>();
  774. [global::ProtoBuf.ProtoMember(1, Name = @"path", DataFormat = global::ProtoBuf.DataFormat.TwosComplement, Options = global::ProtoBuf.MemberSerializationOptions.Packed)]
  775. public global::System.Collections.Generic.List<int> path
  776. {
  777. get { return _path; }
  778. }
  779. private readonly global::System.Collections.Generic.List<int> _span = new global::System.Collections.Generic.List<int>();
  780. [global::ProtoBuf.ProtoMember(2, Name = @"span", DataFormat = global::ProtoBuf.DataFormat.TwosComplement, Options = global::ProtoBuf.MemberSerializationOptions.Packed)]
  781. public global::System.Collections.Generic.List<int> span
  782. {
  783. get { return _span; }
  784. }
  785. private string _trailing_comments = "";
  786. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name = @"trailing_comments", DataFormat = global::ProtoBuf.DataFormat.Default)]
  787. [global::System.ComponentModel.DefaultValue("")]
  788. public string trailing_comments
  789. {
  790. get { return _trailing_comments; }
  791. set { _trailing_comments = value; }
  792. }
  793. private global::ProtoBuf.IExtension extensionObject;
  794. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  795. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  796. }
  797. private global::ProtoBuf.IExtension extensionObject;
  798. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  799. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  800. }
  801. }