_entryHandler.cs 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531
  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. // ***************************************************************************
  10. // * 作者: 卢松洁
  11. // * 创建时间: 2015-08-27
  12. // * 用途: 进入游戏处理器
  13. // ***************************************************************************
  14. // Generated from: entryHandler.proto
  15. // Note: requires additional types generated from: common.proto
  16. // Note: requires additional types generated from: player.proto
  17. namespace pomelo.connector
  18. {
  19. //---------------------------------------------------------------------------------------
  20. /// <summary>
  21. /// 获取系统时间请求
  22. /// </summary>
  23. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetSysTimeRequest")]
  24. public partial class GetSysTimeRequest : global::ProtoBuf.IExtensible
  25. {
  26. public GetSysTimeRequest() {}
  27. private global::ProtoBuf.IExtension extensionObject;
  28. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  29. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  30. }
  31. //---------------------------------------------------------------------------------------
  32. /// <summary>
  33. /// 获取系统时间返回
  34. /// </summary>
  35. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetSysTimeResponse")]
  36. public partial class GetSysTimeResponse : global::ProtoBuf.IExtensible
  37. {
  38. public GetSysTimeResponse() {}
  39. private int _s2c_code;
  40. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  41. public int s2c_code
  42. {
  43. get { return _s2c_code; }
  44. set { _s2c_code = value; }
  45. }
  46. private long _s2c_time;
  47. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"s2c_time", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  48. public long s2c_time
  49. {
  50. get { return _s2c_time; }
  51. set { _s2c_time = value; }
  52. }
  53. private string _s2c_msg = "";
  54. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  55. [global::System.ComponentModel.DefaultValue("")]
  56. public string s2c_msg
  57. {
  58. get { return _s2c_msg; }
  59. set { _s2c_msg = value; }
  60. }
  61. private global::ProtoBuf.IExtension extensionObject;
  62. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  63. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  64. }
  65. //---------------------------------------------------------------------------------------
  66. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EntryRequest")]
  67. public partial class EntryRequest : global::ProtoBuf.IExtensible
  68. {
  69. public EntryRequest() {}
  70. private string _c2s_uid;
  71. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_uid", DataFormat = global::ProtoBuf.DataFormat.Default)]
  72. public string c2s_uid
  73. {
  74. get { return _c2s_uid; }
  75. set { _c2s_uid = value; }
  76. }
  77. private string _c2s_token;
  78. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_token", DataFormat = global::ProtoBuf.DataFormat.Default)]
  79. public string c2s_token
  80. {
  81. get { return _c2s_token; }
  82. set { _c2s_token = value; }
  83. }
  84. private int _c2s_logicServerId;
  85. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"c2s_logicServerId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  86. public int c2s_logicServerId
  87. {
  88. get { return _c2s_logicServerId; }
  89. set { _c2s_logicServerId = value; }
  90. }
  91. private string _c2s_deviceMac = "";
  92. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"c2s_deviceMac", DataFormat = global::ProtoBuf.DataFormat.Default)]
  93. [global::System.ComponentModel.DefaultValue("")]
  94. public string c2s_deviceMac
  95. {
  96. get { return _c2s_deviceMac; }
  97. set { _c2s_deviceMac = value; }
  98. }
  99. private int _c2s_deviceType = default(int);
  100. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"c2s_deviceType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  101. [global::System.ComponentModel.DefaultValue(default(int))]
  102. public int c2s_deviceType
  103. {
  104. get { return _c2s_deviceType; }
  105. set { _c2s_deviceType = value; }
  106. }
  107. private string _c2s_clientRegion = "";
  108. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"c2s_clientRegion", DataFormat = global::ProtoBuf.DataFormat.Default)]
  109. [global::System.ComponentModel.DefaultValue("")]
  110. public string c2s_clientRegion
  111. {
  112. get { return _c2s_clientRegion; }
  113. set { _c2s_clientRegion = value; }
  114. }
  115. private string _c2s_clientChannel = "";
  116. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"c2s_clientChannel", DataFormat = global::ProtoBuf.DataFormat.Default)]
  117. [global::System.ComponentModel.DefaultValue("")]
  118. public string c2s_clientChannel
  119. {
  120. get { return _c2s_clientChannel; }
  121. set { _c2s_clientChannel = value; }
  122. }
  123. private string _c2s_clientVersion = "";
  124. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"c2s_clientVersion", DataFormat = global::ProtoBuf.DataFormat.Default)]
  125. [global::System.ComponentModel.DefaultValue("")]
  126. public string c2s_clientVersion
  127. {
  128. get { return _c2s_clientVersion; }
  129. set { _c2s_clientVersion = value; }
  130. }
  131. private global::ProtoBuf.IExtension extensionObject;
  132. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  133. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  134. }
  135. //---------------------------------------------------------------------------------------
  136. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EntryResponse")]
  137. public partial class EntryResponse : global::ProtoBuf.IExtensible
  138. {
  139. public EntryResponse() {}
  140. private int _s2c_code;
  141. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  142. public int s2c_code
  143. {
  144. get { return _s2c_code; }
  145. set { _s2c_code = value; }
  146. }
  147. private string _s2c_msg = "";
  148. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  149. [global::System.ComponentModel.DefaultValue("")]
  150. public string s2c_msg
  151. {
  152. get { return _s2c_msg; }
  153. set { _s2c_msg = value; }
  154. }
  155. private readonly global::System.Collections.Generic.List<pomelo.player.PlayerBasic> _s2c_players = new global::System.Collections.Generic.List<pomelo.player.PlayerBasic>();
  156. [global::ProtoBuf.ProtoMember(3, Name=@"s2c_players", DataFormat = global::ProtoBuf.DataFormat.Default)]
  157. public global::System.Collections.Generic.List<pomelo.player.PlayerBasic> s2c_players
  158. {
  159. get { return _s2c_players; }
  160. }
  161. private global::ProtoBuf.IExtension extensionObject;
  162. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  163. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  164. }
  165. //---------------------------------------------------------------------------------------
  166. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BindPlayerRequest")]
  167. public partial class BindPlayerRequest : global::ProtoBuf.IExtensible
  168. {
  169. public BindPlayerRequest() {}
  170. private string _c2s_playerId;
  171. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_playerId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  172. public string c2s_playerId
  173. {
  174. get { return _c2s_playerId; }
  175. set { _c2s_playerId = value; }
  176. }
  177. private global::ProtoBuf.IExtension extensionObject;
  178. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  179. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  180. }
  181. //---------------------------------------------------------------------------------------
  182. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BindPlayerResponse")]
  183. public partial class BindPlayerResponse : global::ProtoBuf.IExtensible
  184. {
  185. public BindPlayerResponse() {}
  186. private int _s2c_code;
  187. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  188. public int s2c_code
  189. {
  190. get { return _s2c_code; }
  191. set { _s2c_code = value; }
  192. }
  193. private string _s2c_msg = "";
  194. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  195. [global::System.ComponentModel.DefaultValue("")]
  196. public string s2c_msg
  197. {
  198. get { return _s2c_msg; }
  199. set { _s2c_msg = value; }
  200. }
  201. private pomelo.player.Player _s2c_player = null;
  202. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_player", DataFormat = global::ProtoBuf.DataFormat.Default)]
  203. [global::System.ComponentModel.DefaultValue(null)]
  204. public pomelo.player.Player s2c_player
  205. {
  206. get { return _s2c_player; }
  207. set { _s2c_player = value; }
  208. }
  209. private int _s2c_sceneType = default(int);
  210. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"s2c_sceneType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  211. [global::System.ComponentModel.DefaultValue(default(int))]
  212. public int s2c_sceneType
  213. {
  214. get { return _s2c_sceneType; }
  215. set { _s2c_sceneType = value; }
  216. }
  217. private int _s2c_sceneUseAgent = default(int);
  218. /// <summary>
  219. /// 能否吃药剂
  220. /// </summary>
  221. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"s2c_sceneUseAgent", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  222. [global::System.ComponentModel.DefaultValue(default(int))]
  223. public int s2c_sceneUseAgent
  224. {
  225. get { return _s2c_sceneUseAgent; }
  226. set { _s2c_sceneUseAgent = value; }
  227. }
  228. private int _s2c_changePkType = default(int);
  229. /// <summary>
  230. /// 能否改变pk模式
  231. /// </summary>
  232. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"s2c_changePkType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  233. [global::System.ComponentModel.DefaultValue(default(int))]
  234. public int s2c_changePkType
  235. {
  236. get { return _s2c_changePkType; }
  237. set { _s2c_changePkType = value; }
  238. }
  239. private int _s2c_rideMount = default(int);
  240. /// <summary>
  241. /// 能否骑马
  242. /// </summary>
  243. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"s2c_rideMount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  244. [global::System.ComponentModel.DefaultValue(default(int))]
  245. public int s2c_rideMount
  246. {
  247. get { return _s2c_rideMount; }
  248. set { _s2c_rideMount = value; }
  249. }
  250. private global::ProtoBuf.IExtension extensionObject;
  251. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  252. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  253. }
  254. //---------------------------------------------------------------------------------------
  255. /// <summary>
  256. /// public static final short MSG_enterCrossServer = 463; 本服请求进入跨服场景
  257. /// </summary>
  258. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EnterCrossServerRequest")]
  259. public partial class EnterCrossServerRequest : global::ProtoBuf.IExtensible
  260. {
  261. public EnterCrossServerRequest() {}
  262. private global::ProtoBuf.IExtension extensionObject;
  263. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  264. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  265. }
  266. //---------------------------------------------------------------------------------------
  267. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EnterCrossServerResponse")]
  268. public partial class EnterCrossServerResponse : global::ProtoBuf.IExtensible
  269. {
  270. public EnterCrossServerResponse() {}
  271. private int _s2c_code;
  272. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  273. public int s2c_code
  274. {
  275. get { return _s2c_code; }
  276. set { _s2c_code = value; }
  277. }
  278. private string _s2c_msg = "";
  279. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  280. [global::System.ComponentModel.DefaultValue("")]
  281. public string s2c_msg
  282. {
  283. get { return _s2c_msg; }
  284. set { _s2c_msg = value; }
  285. }
  286. private string _s2c_loginToken = "";
  287. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_loginToken", DataFormat = global::ProtoBuf.DataFormat.Default)]
  288. [global::System.ComponentModel.DefaultValue("")]
  289. public string s2c_loginToken
  290. {
  291. get { return _s2c_loginToken; }
  292. set { _s2c_loginToken = value; }
  293. }
  294. private string _s2c_crossHost = "";
  295. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"s2c_crossHost", DataFormat = global::ProtoBuf.DataFormat.Default)]
  296. [global::System.ComponentModel.DefaultValue("")]
  297. public string s2c_crossHost
  298. {
  299. get { return _s2c_crossHost; }
  300. set { _s2c_crossHost = value; }
  301. }
  302. private int _s2c_crossPort = default(int);
  303. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"s2c_crossPort", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  304. [global::System.ComponentModel.DefaultValue(default(int))]
  305. public int s2c_crossPort
  306. {
  307. get { return _s2c_crossPort; }
  308. set { _s2c_crossPort = value; }
  309. }
  310. private int _s2c_serverid = default(int);
  311. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"s2c_serverid", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  312. [global::System.ComponentModel.DefaultValue(default(int))]
  313. public int s2c_serverid
  314. {
  315. get { return _s2c_serverid; }
  316. set { _s2c_serverid = value; }
  317. }
  318. private global::ProtoBuf.IExtension extensionObject;
  319. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  320. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  321. }
  322. //---------------------------------------------------------------------------------------
  323. /// <summary>
  324. /// public static final short MSG_ExitCrossServerToLogicServer = 464; 退出跨服场景,进入逻辑服
  325. /// </summary>
  326. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ExitCrossServerToLogicServerRequest")]
  327. public partial class ExitCrossServerToLogicServerRequest : global::ProtoBuf.IExtensible
  328. {
  329. public ExitCrossServerToLogicServerRequest() {}
  330. private global::ProtoBuf.IExtension extensionObject;
  331. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  332. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  333. }
  334. //---------------------------------------------------------------------------------------
  335. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ExitCrossServerToLogicServerResponse")]
  336. public partial class ExitCrossServerToLogicServerResponse : global::ProtoBuf.IExtensible
  337. {
  338. public ExitCrossServerToLogicServerResponse() {}
  339. private int _s2c_code;
  340. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  341. public int s2c_code
  342. {
  343. get { return _s2c_code; }
  344. set { _s2c_code = value; }
  345. }
  346. private string _s2c_msg = "";
  347. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  348. [global::System.ComponentModel.DefaultValue("")]
  349. public string s2c_msg
  350. {
  351. get { return _s2c_msg; }
  352. set { _s2c_msg = value; }
  353. }
  354. private string _s2c_loginToken = "";
  355. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_loginToken", DataFormat = global::ProtoBuf.DataFormat.Default)]
  356. [global::System.ComponentModel.DefaultValue("")]
  357. public string s2c_loginToken
  358. {
  359. get { return _s2c_loginToken; }
  360. set { _s2c_loginToken = value; }
  361. }
  362. private global::ProtoBuf.IExtension extensionObject;
  363. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  364. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  365. }
  366. //---------------------------------------------------------------------------------------
  367. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"LoginQueuePush")]
  368. public partial class LoginQueuePush : global::ProtoBuf.IExtensible
  369. {
  370. public LoginQueuePush() {}
  371. private int _num;
  372. /// <summary>
  373. /// 排队人数
  374. /// </summary>
  375. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"num", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  376. public int num
  377. {
  378. get { return _num; }
  379. set { _num = value; }
  380. }
  381. private int _time;
  382. /// <summary>
  383. /// 剩余时间:单位秒
  384. /// </summary>
  385. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"time", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  386. public int time
  387. {
  388. get { return _time; }
  389. set { _time = 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. //---------------------------------------------------------------------------------------
  396. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BuffItem")]
  397. public partial class BuffItem : global::ProtoBuf.IExtensible
  398. {
  399. public BuffItem() {}
  400. private int _buffId;
  401. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"buffId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  402. public int buffId
  403. {
  404. get { return _buffId; }
  405. set { _buffId = value; }
  406. }
  407. private int _leftTime;
  408. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"leftTime", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  409. public int leftTime
  410. {
  411. get { return _leftTime; }
  412. set { _leftTime = value; }
  413. }
  414. private global::ProtoBuf.IExtension extensionObject;
  415. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  416. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  417. }
  418. //---------------------------------------------------------------------------------------
  419. /// <summary>
  420. /// msgid = 1413
  421. /// </summary>
  422. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"HUDBuffListPush")]
  423. public partial class HUDBuffListPush : global::ProtoBuf.IExtensible
  424. {
  425. public HUDBuffListPush() {}
  426. private readonly global::System.Collections.Generic.List<pomelo.connector.BuffItem> _s2c_buffList = new global::System.Collections.Generic.List<pomelo.connector.BuffItem>();
  427. /// <summary>
  428. /// HUDbuff列表
  429. /// </summary>
  430. [global::ProtoBuf.ProtoMember(1, Name=@"s2c_buffList", DataFormat = global::ProtoBuf.DataFormat.Default)]
  431. public global::System.Collections.Generic.List<pomelo.connector.BuffItem> s2c_buffList
  432. {
  433. get { return _s2c_buffList; }
  434. }
  435. private global::ProtoBuf.IExtension extensionObject;
  436. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  437. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  438. }
  439. }