HotfixMessage.cs 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810
  1. // Generated by the protocol buffer compiler. DO NOT EDIT!
  2. // source: HotfixMessage.proto
  3. #pragma warning disable 1591, 0612, 3021
  4. #region Designer generated code
  5. using pb = global::Google.Protobuf;
  6. using pbc = global::Google.Protobuf.Collections;
  7. using scg = global::System.Collections.Generic;
  8. namespace ETHotfix {
  9. #region Messages
  10. public partial class C2R_Login : pb::IMessage {
  11. private static readonly pb::MessageParser<C2R_Login> _parser = new pb::MessageParser<C2R_Login>(() => new C2R_Login());
  12. public static pb::MessageParser<C2R_Login> Parser { get { return _parser; } }
  13. private int rpcId_;
  14. public int RpcId {
  15. get { return rpcId_; }
  16. set {
  17. rpcId_ = value;
  18. }
  19. }
  20. private string account_ = "";
  21. /// <summary>
  22. /// 帐号
  23. /// </summary>
  24. public string Account {
  25. get { return account_; }
  26. set {
  27. account_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  28. }
  29. }
  30. private string password_ = "";
  31. /// <summary>
  32. /// 密码
  33. /// </summary>
  34. public string Password {
  35. get { return password_; }
  36. set {
  37. password_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  38. }
  39. }
  40. public void WriteTo(pb::CodedOutputStream output) {
  41. if (Account.Length != 0) {
  42. output.WriteRawTag(10);
  43. output.WriteString(Account);
  44. }
  45. if (Password.Length != 0) {
  46. output.WriteRawTag(18);
  47. output.WriteString(Password);
  48. }
  49. if (RpcId != 0) {
  50. output.WriteRawTag(208, 5);
  51. output.WriteInt32(RpcId);
  52. }
  53. }
  54. public int CalculateSize() {
  55. int size = 0;
  56. if (RpcId != 0) {
  57. size += 2 + pb::CodedOutputStream.ComputeInt32Size(RpcId);
  58. }
  59. if (Account.Length != 0) {
  60. size += 1 + pb::CodedOutputStream.ComputeStringSize(Account);
  61. }
  62. if (Password.Length != 0) {
  63. size += 1 + pb::CodedOutputStream.ComputeStringSize(Password);
  64. }
  65. return size;
  66. }
  67. public void MergeFrom(pb::CodedInputStream input) {
  68. uint tag;
  69. while ((tag = input.ReadTag()) != 0) {
  70. switch(tag) {
  71. default:
  72. input.SkipLastField();
  73. break;
  74. case 10: {
  75. Account = input.ReadString();
  76. break;
  77. }
  78. case 18: {
  79. Password = input.ReadString();
  80. break;
  81. }
  82. case 720: {
  83. RpcId = input.ReadInt32();
  84. break;
  85. }
  86. }
  87. }
  88. }
  89. }
  90. public partial class R2C_Login : pb::IMessage {
  91. private static readonly pb::MessageParser<R2C_Login> _parser = new pb::MessageParser<R2C_Login>(() => new R2C_Login());
  92. public static pb::MessageParser<R2C_Login> Parser { get { return _parser; } }
  93. private int rpcId_;
  94. public int RpcId {
  95. get { return rpcId_; }
  96. set {
  97. rpcId_ = value;
  98. }
  99. }
  100. private int error_;
  101. public int Error {
  102. get { return error_; }
  103. set {
  104. error_ = value;
  105. }
  106. }
  107. private string message_ = "";
  108. public string Message {
  109. get { return message_; }
  110. set {
  111. message_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  112. }
  113. }
  114. private string address_ = "";
  115. public string Address {
  116. get { return address_; }
  117. set {
  118. address_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  119. }
  120. }
  121. private long key_;
  122. public long Key {
  123. get { return key_; }
  124. set {
  125. key_ = value;
  126. }
  127. }
  128. public void WriteTo(pb::CodedOutputStream output) {
  129. if (Address.Length != 0) {
  130. output.WriteRawTag(10);
  131. output.WriteString(Address);
  132. }
  133. if (Key != 0L) {
  134. output.WriteRawTag(16);
  135. output.WriteInt64(Key);
  136. }
  137. if (RpcId != 0) {
  138. output.WriteRawTag(208, 5);
  139. output.WriteInt32(RpcId);
  140. }
  141. if (Error != 0) {
  142. output.WriteRawTag(216, 5);
  143. output.WriteInt32(Error);
  144. }
  145. if (Message.Length != 0) {
  146. output.WriteRawTag(226, 5);
  147. output.WriteString(Message);
  148. }
  149. }
  150. public int CalculateSize() {
  151. int size = 0;
  152. if (RpcId != 0) {
  153. size += 2 + pb::CodedOutputStream.ComputeInt32Size(RpcId);
  154. }
  155. if (Error != 0) {
  156. size += 2 + pb::CodedOutputStream.ComputeInt32Size(Error);
  157. }
  158. if (Message.Length != 0) {
  159. size += 2 + pb::CodedOutputStream.ComputeStringSize(Message);
  160. }
  161. if (Address.Length != 0) {
  162. size += 1 + pb::CodedOutputStream.ComputeStringSize(Address);
  163. }
  164. if (Key != 0L) {
  165. size += 1 + pb::CodedOutputStream.ComputeInt64Size(Key);
  166. }
  167. return size;
  168. }
  169. public void MergeFrom(pb::CodedInputStream input) {
  170. uint tag;
  171. while ((tag = input.ReadTag()) != 0) {
  172. switch(tag) {
  173. default:
  174. input.SkipLastField();
  175. break;
  176. case 10: {
  177. Address = input.ReadString();
  178. break;
  179. }
  180. case 16: {
  181. Key = input.ReadInt64();
  182. break;
  183. }
  184. case 720: {
  185. RpcId = input.ReadInt32();
  186. break;
  187. }
  188. case 728: {
  189. Error = input.ReadInt32();
  190. break;
  191. }
  192. case 738: {
  193. Message = input.ReadString();
  194. break;
  195. }
  196. }
  197. }
  198. }
  199. }
  200. public partial class C2G_LoginGate : pb::IMessage {
  201. private static readonly pb::MessageParser<C2G_LoginGate> _parser = new pb::MessageParser<C2G_LoginGate>(() => new C2G_LoginGate());
  202. public static pb::MessageParser<C2G_LoginGate> Parser { get { return _parser; } }
  203. private int rpcId_;
  204. public int RpcId {
  205. get { return rpcId_; }
  206. set {
  207. rpcId_ = value;
  208. }
  209. }
  210. private long key_;
  211. /// <summary>
  212. /// 帐号
  213. /// </summary>
  214. public long Key {
  215. get { return key_; }
  216. set {
  217. key_ = value;
  218. }
  219. }
  220. public void WriteTo(pb::CodedOutputStream output) {
  221. if (Key != 0L) {
  222. output.WriteRawTag(8);
  223. output.WriteInt64(Key);
  224. }
  225. if (RpcId != 0) {
  226. output.WriteRawTag(208, 5);
  227. output.WriteInt32(RpcId);
  228. }
  229. }
  230. public int CalculateSize() {
  231. int size = 0;
  232. if (RpcId != 0) {
  233. size += 2 + pb::CodedOutputStream.ComputeInt32Size(RpcId);
  234. }
  235. if (Key != 0L) {
  236. size += 1 + pb::CodedOutputStream.ComputeInt64Size(Key);
  237. }
  238. return size;
  239. }
  240. public void MergeFrom(pb::CodedInputStream input) {
  241. uint tag;
  242. while ((tag = input.ReadTag()) != 0) {
  243. switch(tag) {
  244. default:
  245. input.SkipLastField();
  246. break;
  247. case 8: {
  248. Key = input.ReadInt64();
  249. break;
  250. }
  251. case 720: {
  252. RpcId = input.ReadInt32();
  253. break;
  254. }
  255. }
  256. }
  257. }
  258. }
  259. public partial class G2C_LoginGate : pb::IMessage {
  260. private static readonly pb::MessageParser<G2C_LoginGate> _parser = new pb::MessageParser<G2C_LoginGate>(() => new G2C_LoginGate());
  261. public static pb::MessageParser<G2C_LoginGate> Parser { get { return _parser; } }
  262. private int rpcId_;
  263. public int RpcId {
  264. get { return rpcId_; }
  265. set {
  266. rpcId_ = value;
  267. }
  268. }
  269. private int error_;
  270. public int Error {
  271. get { return error_; }
  272. set {
  273. error_ = value;
  274. }
  275. }
  276. private string message_ = "";
  277. public string Message {
  278. get { return message_; }
  279. set {
  280. message_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  281. }
  282. }
  283. private long playerId_;
  284. public long PlayerId {
  285. get { return playerId_; }
  286. set {
  287. playerId_ = value;
  288. }
  289. }
  290. public void WriteTo(pb::CodedOutputStream output) {
  291. if (PlayerId != 0L) {
  292. output.WriteRawTag(8);
  293. output.WriteInt64(PlayerId);
  294. }
  295. if (RpcId != 0) {
  296. output.WriteRawTag(208, 5);
  297. output.WriteInt32(RpcId);
  298. }
  299. if (Error != 0) {
  300. output.WriteRawTag(216, 5);
  301. output.WriteInt32(Error);
  302. }
  303. if (Message.Length != 0) {
  304. output.WriteRawTag(226, 5);
  305. output.WriteString(Message);
  306. }
  307. }
  308. public int CalculateSize() {
  309. int size = 0;
  310. if (RpcId != 0) {
  311. size += 2 + pb::CodedOutputStream.ComputeInt32Size(RpcId);
  312. }
  313. if (Error != 0) {
  314. size += 2 + pb::CodedOutputStream.ComputeInt32Size(Error);
  315. }
  316. if (Message.Length != 0) {
  317. size += 2 + pb::CodedOutputStream.ComputeStringSize(Message);
  318. }
  319. if (PlayerId != 0L) {
  320. size += 1 + pb::CodedOutputStream.ComputeInt64Size(PlayerId);
  321. }
  322. return size;
  323. }
  324. public void MergeFrom(pb::CodedInputStream input) {
  325. uint tag;
  326. while ((tag = input.ReadTag()) != 0) {
  327. switch(tag) {
  328. default:
  329. input.SkipLastField();
  330. break;
  331. case 8: {
  332. PlayerId = input.ReadInt64();
  333. break;
  334. }
  335. case 720: {
  336. RpcId = input.ReadInt32();
  337. break;
  338. }
  339. case 728: {
  340. Error = input.ReadInt32();
  341. break;
  342. }
  343. case 738: {
  344. Message = input.ReadString();
  345. break;
  346. }
  347. }
  348. }
  349. }
  350. }
  351. public partial class G2C_TestHotfixMessage : pb::IMessage {
  352. private static readonly pb::MessageParser<G2C_TestHotfixMessage> _parser = new pb::MessageParser<G2C_TestHotfixMessage>(() => new G2C_TestHotfixMessage());
  353. public static pb::MessageParser<G2C_TestHotfixMessage> Parser { get { return _parser; } }
  354. private string info_ = "";
  355. public string Info {
  356. get { return info_; }
  357. set {
  358. info_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  359. }
  360. }
  361. public void WriteTo(pb::CodedOutputStream output) {
  362. if (Info.Length != 0) {
  363. output.WriteRawTag(10);
  364. output.WriteString(Info);
  365. }
  366. }
  367. public int CalculateSize() {
  368. int size = 0;
  369. if (Info.Length != 0) {
  370. size += 1 + pb::CodedOutputStream.ComputeStringSize(Info);
  371. }
  372. return size;
  373. }
  374. public void MergeFrom(pb::CodedInputStream input) {
  375. uint tag;
  376. while ((tag = input.ReadTag()) != 0) {
  377. switch(tag) {
  378. default:
  379. input.SkipLastField();
  380. break;
  381. case 10: {
  382. Info = input.ReadString();
  383. break;
  384. }
  385. }
  386. }
  387. }
  388. }
  389. public partial class C2M_TestActorRequest : pb::IMessage {
  390. private static readonly pb::MessageParser<C2M_TestActorRequest> _parser = new pb::MessageParser<C2M_TestActorRequest>(() => new C2M_TestActorRequest());
  391. public static pb::MessageParser<C2M_TestActorRequest> Parser { get { return _parser; } }
  392. private int rpcId_;
  393. public int RpcId {
  394. get { return rpcId_; }
  395. set {
  396. rpcId_ = value;
  397. }
  398. }
  399. private long actorId_;
  400. public long ActorId {
  401. get { return actorId_; }
  402. set {
  403. actorId_ = value;
  404. }
  405. }
  406. private string info_ = "";
  407. public string Info {
  408. get { return info_; }
  409. set {
  410. info_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  411. }
  412. }
  413. public void WriteTo(pb::CodedOutputStream output) {
  414. if (Info.Length != 0) {
  415. output.WriteRawTag(10);
  416. output.WriteString(Info);
  417. }
  418. if (RpcId != 0) {
  419. output.WriteRawTag(208, 5);
  420. output.WriteInt32(RpcId);
  421. }
  422. if (ActorId != 0L) {
  423. output.WriteRawTag(216, 5);
  424. output.WriteInt64(ActorId);
  425. }
  426. }
  427. public int CalculateSize() {
  428. int size = 0;
  429. if (RpcId != 0) {
  430. size += 2 + pb::CodedOutputStream.ComputeInt32Size(RpcId);
  431. }
  432. if (ActorId != 0L) {
  433. size += 2 + pb::CodedOutputStream.ComputeInt64Size(ActorId);
  434. }
  435. if (Info.Length != 0) {
  436. size += 1 + pb::CodedOutputStream.ComputeStringSize(Info);
  437. }
  438. return size;
  439. }
  440. public void MergeFrom(pb::CodedInputStream input) {
  441. uint tag;
  442. while ((tag = input.ReadTag()) != 0) {
  443. switch(tag) {
  444. default:
  445. input.SkipLastField();
  446. break;
  447. case 10: {
  448. Info = input.ReadString();
  449. break;
  450. }
  451. case 720: {
  452. RpcId = input.ReadInt32();
  453. break;
  454. }
  455. case 728: {
  456. ActorId = input.ReadInt64();
  457. break;
  458. }
  459. }
  460. }
  461. }
  462. }
  463. public partial class M2C_TestActorResponse : pb::IMessage {
  464. private static readonly pb::MessageParser<M2C_TestActorResponse> _parser = new pb::MessageParser<M2C_TestActorResponse>(() => new M2C_TestActorResponse());
  465. public static pb::MessageParser<M2C_TestActorResponse> Parser { get { return _parser; } }
  466. private int rpcId_;
  467. public int RpcId {
  468. get { return rpcId_; }
  469. set {
  470. rpcId_ = value;
  471. }
  472. }
  473. private int error_;
  474. public int Error {
  475. get { return error_; }
  476. set {
  477. error_ = value;
  478. }
  479. }
  480. private string message_ = "";
  481. public string Message {
  482. get { return message_; }
  483. set {
  484. message_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  485. }
  486. }
  487. private string info_ = "";
  488. public string Info {
  489. get { return info_; }
  490. set {
  491. info_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  492. }
  493. }
  494. public void WriteTo(pb::CodedOutputStream output) {
  495. if (Info.Length != 0) {
  496. output.WriteRawTag(10);
  497. output.WriteString(Info);
  498. }
  499. if (RpcId != 0) {
  500. output.WriteRawTag(208, 5);
  501. output.WriteInt32(RpcId);
  502. }
  503. if (Error != 0) {
  504. output.WriteRawTag(216, 5);
  505. output.WriteInt32(Error);
  506. }
  507. if (Message.Length != 0) {
  508. output.WriteRawTag(226, 5);
  509. output.WriteString(Message);
  510. }
  511. }
  512. public int CalculateSize() {
  513. int size = 0;
  514. if (RpcId != 0) {
  515. size += 2 + pb::CodedOutputStream.ComputeInt32Size(RpcId);
  516. }
  517. if (Error != 0) {
  518. size += 2 + pb::CodedOutputStream.ComputeInt32Size(Error);
  519. }
  520. if (Message.Length != 0) {
  521. size += 2 + pb::CodedOutputStream.ComputeStringSize(Message);
  522. }
  523. if (Info.Length != 0) {
  524. size += 1 + pb::CodedOutputStream.ComputeStringSize(Info);
  525. }
  526. return size;
  527. }
  528. public void MergeFrom(pb::CodedInputStream input) {
  529. uint tag;
  530. while ((tag = input.ReadTag()) != 0) {
  531. switch(tag) {
  532. default:
  533. input.SkipLastField();
  534. break;
  535. case 10: {
  536. Info = input.ReadString();
  537. break;
  538. }
  539. case 720: {
  540. RpcId = input.ReadInt32();
  541. break;
  542. }
  543. case 728: {
  544. Error = input.ReadInt32();
  545. break;
  546. }
  547. case 738: {
  548. Message = input.ReadString();
  549. break;
  550. }
  551. }
  552. }
  553. }
  554. }
  555. public partial class PlayerInfo : pb::IMessage {
  556. private static readonly pb::MessageParser<PlayerInfo> _parser = new pb::MessageParser<PlayerInfo>(() => new PlayerInfo());
  557. public static pb::MessageParser<PlayerInfo> Parser { get { return _parser; } }
  558. private int rpcId_;
  559. public int RpcId {
  560. get { return rpcId_; }
  561. set {
  562. rpcId_ = value;
  563. }
  564. }
  565. public void WriteTo(pb::CodedOutputStream output) {
  566. if (RpcId != 0) {
  567. output.WriteRawTag(208, 5);
  568. output.WriteInt32(RpcId);
  569. }
  570. }
  571. public int CalculateSize() {
  572. int size = 0;
  573. if (RpcId != 0) {
  574. size += 2 + pb::CodedOutputStream.ComputeInt32Size(RpcId);
  575. }
  576. return size;
  577. }
  578. public void MergeFrom(pb::CodedInputStream input) {
  579. uint tag;
  580. while ((tag = input.ReadTag()) != 0) {
  581. switch(tag) {
  582. default:
  583. input.SkipLastField();
  584. break;
  585. case 720: {
  586. RpcId = input.ReadInt32();
  587. break;
  588. }
  589. }
  590. }
  591. }
  592. }
  593. public partial class C2G_PlayerInfo : pb::IMessage {
  594. private static readonly pb::MessageParser<C2G_PlayerInfo> _parser = new pb::MessageParser<C2G_PlayerInfo>(() => new C2G_PlayerInfo());
  595. public static pb::MessageParser<C2G_PlayerInfo> Parser { get { return _parser; } }
  596. private int rpcId_;
  597. public int RpcId {
  598. get { return rpcId_; }
  599. set {
  600. rpcId_ = value;
  601. }
  602. }
  603. public void WriteTo(pb::CodedOutputStream output) {
  604. if (RpcId != 0) {
  605. output.WriteRawTag(208, 5);
  606. output.WriteInt32(RpcId);
  607. }
  608. }
  609. public int CalculateSize() {
  610. int size = 0;
  611. if (RpcId != 0) {
  612. size += 2 + pb::CodedOutputStream.ComputeInt32Size(RpcId);
  613. }
  614. return size;
  615. }
  616. public void MergeFrom(pb::CodedInputStream input) {
  617. uint tag;
  618. while ((tag = input.ReadTag()) != 0) {
  619. switch(tag) {
  620. default:
  621. input.SkipLastField();
  622. break;
  623. case 720: {
  624. RpcId = input.ReadInt32();
  625. break;
  626. }
  627. }
  628. }
  629. }
  630. }
  631. public partial class G2C_PlayerInfo : pb::IMessage {
  632. private static readonly pb::MessageParser<G2C_PlayerInfo> _parser = new pb::MessageParser<G2C_PlayerInfo>(() => new G2C_PlayerInfo());
  633. public static pb::MessageParser<G2C_PlayerInfo> Parser { get { return _parser; } }
  634. private int rpcId_;
  635. public int RpcId {
  636. get { return rpcId_; }
  637. set {
  638. rpcId_ = value;
  639. }
  640. }
  641. private int error_;
  642. public int Error {
  643. get { return error_; }
  644. set {
  645. error_ = value;
  646. }
  647. }
  648. private string message_ = "";
  649. public string Message {
  650. get { return message_; }
  651. set {
  652. message_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  653. }
  654. }
  655. private global::ETHotfix.PlayerInfo playerInfos_;
  656. public global::ETHotfix.PlayerInfo PlayerInfos {
  657. get { return playerInfos_; }
  658. set {
  659. playerInfos_ = value;
  660. }
  661. }
  662. public void WriteTo(pb::CodedOutputStream output) {
  663. if (playerInfos_ != null) {
  664. output.WriteRawTag(10);
  665. output.WriteMessage(PlayerInfos);
  666. }
  667. if (RpcId != 0) {
  668. output.WriteRawTag(208, 5);
  669. output.WriteInt32(RpcId);
  670. }
  671. if (Error != 0) {
  672. output.WriteRawTag(216, 5);
  673. output.WriteInt32(Error);
  674. }
  675. if (Message.Length != 0) {
  676. output.WriteRawTag(226, 5);
  677. output.WriteString(Message);
  678. }
  679. }
  680. public int CalculateSize() {
  681. int size = 0;
  682. if (RpcId != 0) {
  683. size += 2 + pb::CodedOutputStream.ComputeInt32Size(RpcId);
  684. }
  685. if (Error != 0) {
  686. size += 2 + pb::CodedOutputStream.ComputeInt32Size(Error);
  687. }
  688. if (Message.Length != 0) {
  689. size += 2 + pb::CodedOutputStream.ComputeStringSize(Message);
  690. }
  691. if (playerInfos_ != null) {
  692. size += 1 + pb::CodedOutputStream.ComputeMessageSize(PlayerInfos);
  693. }
  694. return size;
  695. }
  696. public void MergeFrom(pb::CodedInputStream input) {
  697. uint tag;
  698. while ((tag = input.ReadTag()) != 0) {
  699. switch(tag) {
  700. default:
  701. input.SkipLastField();
  702. break;
  703. case 10: {
  704. if (playerInfos_ == null) {
  705. playerInfos_ = new global::ETHotfix.PlayerInfo();
  706. }
  707. input.ReadMessage(playerInfos_);
  708. break;
  709. }
  710. case 720: {
  711. RpcId = input.ReadInt32();
  712. break;
  713. }
  714. case 728: {
  715. Error = input.ReadInt32();
  716. break;
  717. }
  718. case 738: {
  719. Message = input.ReadString();
  720. break;
  721. }
  722. }
  723. }
  724. }
  725. }
  726. #endregion
  727. }
  728. #endregion Designer generated code