MainForm.Designer.cs 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663
  1. namespace TestNotificationApplication
  2. {
  3. partial class MainForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.groupBox1 = new System.Windows.Forms.GroupBox();
  29. this.initializeButton = new System.Windows.Forms.Button();
  30. this.apiVersionTextBox = new System.Windows.Forms.TextBox();
  31. this.serviceSecretTextBox = new System.Windows.Forms.TextBox();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.serviceIdTextBox = new System.Windows.Forms.TextBox();
  34. this.label4 = new System.Windows.Forms.Label();
  35. this.restBaseTextBox = new System.Windows.Forms.TextBox();
  36. this.label3 = new System.Windows.Forms.Label();
  37. this.label2 = new System.Windows.Forms.Label();
  38. this.responseTextBox = new System.Windows.Forms.TextBox();
  39. this.groupBox2 = new System.Windows.Forms.GroupBox();
  40. this.tabControl1 = new System.Windows.Forms.TabControl();
  41. this.tabPage1 = new System.Windows.Forms.TabPage();
  42. this.nid_PushButton = new System.Windows.Forms.Button();
  43. this.nid_wakeUpCheckBox = new System.Windows.Forms.CheckBox();
  44. this.nid_encodingTextBox = new System.Windows.Forms.TextBox();
  45. this.label8 = new System.Windows.Forms.Label();
  46. this.nid_contentTypeTextBox = new System.Windows.Forms.TextBox();
  47. this.label7 = new System.Windows.Forms.Label();
  48. this.nid_payloadTextBox = new System.Windows.Forms.TextBox();
  49. this.label6 = new System.Windows.Forms.Label();
  50. this.notificationIdTextBox = new System.Windows.Forms.TextBox();
  51. this.label5 = new System.Windows.Forms.Label();
  52. this.tabPage2 = new System.Windows.Forms.TabPage();
  53. this.jid_PushButton = new System.Windows.Forms.Button();
  54. this.jid_wakeUpCheckBox = new System.Windows.Forms.CheckBox();
  55. this.jid_encodingTextBox = new System.Windows.Forms.TextBox();
  56. this.label9 = new System.Windows.Forms.Label();
  57. this.jid_contentTypeTextBox = new System.Windows.Forms.TextBox();
  58. this.label10 = new System.Windows.Forms.Label();
  59. this.jid_payLoadTextBox = new System.Windows.Forms.TextBox();
  60. this.label11 = new System.Windows.Forms.Label();
  61. this.jid_applicationIdTextBox = new System.Windows.Forms.TextBox();
  62. this.label13 = new System.Windows.Forms.Label();
  63. this.jidTextBox = new System.Windows.Forms.TextBox();
  64. this.label12 = new System.Windows.Forms.Label();
  65. this.tabPage4 = new System.Windows.Forms.TabPage();
  66. this.pingNid_Button = new System.Windows.Forms.Button();
  67. this.pingNotificationIdTextBox = new System.Windows.Forms.TextBox();
  68. this.label14 = new System.Windows.Forms.Label();
  69. this.tabPage5 = new System.Windows.Forms.TabPage();
  70. this.pingjid_applicationIdTextBox = new System.Windows.Forms.TextBox();
  71. this.label16 = new System.Windows.Forms.Label();
  72. this.pingjid_Button = new System.Windows.Forms.Button();
  73. this.pingJidTextBox = new System.Windows.Forms.TextBox();
  74. this.label15 = new System.Windows.Forms.Label();
  75. this.tabPage3 = new System.Windows.Forms.TabPage();
  76. this.queryLimitationsButton = new System.Windows.Forms.Button();
  77. this.pingServiceButton = new System.Windows.Forms.Button();
  78. this.versionButton = new System.Windows.Forms.Button();
  79. this.groupBox1.SuspendLayout();
  80. this.groupBox2.SuspendLayout();
  81. this.tabControl1.SuspendLayout();
  82. this.tabPage1.SuspendLayout();
  83. this.tabPage2.SuspendLayout();
  84. this.tabPage4.SuspendLayout();
  85. this.tabPage5.SuspendLayout();
  86. this.tabPage3.SuspendLayout();
  87. this.SuspendLayout();
  88. //
  89. // groupBox1
  90. //
  91. this.groupBox1.Controls.Add(this.initializeButton);
  92. this.groupBox1.Controls.Add(this.apiVersionTextBox);
  93. this.groupBox1.Controls.Add(this.serviceSecretTextBox);
  94. this.groupBox1.Controls.Add(this.label1);
  95. this.groupBox1.Controls.Add(this.serviceIdTextBox);
  96. this.groupBox1.Controls.Add(this.label4);
  97. this.groupBox1.Controls.Add(this.restBaseTextBox);
  98. this.groupBox1.Controls.Add(this.label3);
  99. this.groupBox1.Controls.Add(this.label2);
  100. this.groupBox1.Location = new System.Drawing.Point(12, 12);
  101. this.groupBox1.Name = "groupBox1";
  102. this.groupBox1.Size = new System.Drawing.Size(284, 157);
  103. this.groupBox1.TabIndex = 3;
  104. this.groupBox1.TabStop = false;
  105. this.groupBox1.Text = "Configuration";
  106. //
  107. // initializeButton
  108. //
  109. this.initializeButton.Location = new System.Drawing.Point(203, 128);
  110. this.initializeButton.Name = "initializeButton";
  111. this.initializeButton.Size = new System.Drawing.Size(75, 23);
  112. this.initializeButton.TabIndex = 3;
  113. this.initializeButton.Text = "Initialize";
  114. this.initializeButton.UseVisualStyleBackColor = true;
  115. this.initializeButton.Click += new System.EventHandler(this.initializeButton_Click);
  116. //
  117. // apiVersionTextBox
  118. //
  119. this.apiVersionTextBox.Location = new System.Drawing.Point(91, 97);
  120. this.apiVersionTextBox.Name = "apiVersionTextBox";
  121. this.apiVersionTextBox.Size = new System.Drawing.Size(187, 20);
  122. this.apiVersionTextBox.TabIndex = 2;
  123. //
  124. // serviceSecretTextBox
  125. //
  126. this.serviceSecretTextBox.Location = new System.Drawing.Point(91, 71);
  127. this.serviceSecretTextBox.Name = "serviceSecretTextBox";
  128. this.serviceSecretTextBox.Size = new System.Drawing.Size(187, 20);
  129. this.serviceSecretTextBox.TabIndex = 2;
  130. //
  131. // label1
  132. //
  133. this.label1.AutoSize = true;
  134. this.label1.Location = new System.Drawing.Point(13, 100);
  135. this.label1.Name = "label1";
  136. this.label1.Size = new System.Drawing.Size(62, 13);
  137. this.label1.TabIndex = 1;
  138. this.label1.Text = "API Version";
  139. //
  140. // serviceIdTextBox
  141. //
  142. this.serviceIdTextBox.Location = new System.Drawing.Point(91, 45);
  143. this.serviceIdTextBox.Name = "serviceIdTextBox";
  144. this.serviceIdTextBox.Size = new System.Drawing.Size(187, 20);
  145. this.serviceIdTextBox.TabIndex = 2;
  146. //
  147. // label4
  148. //
  149. this.label4.AutoSize = true;
  150. this.label4.Location = new System.Drawing.Point(13, 74);
  151. this.label4.Name = "label4";
  152. this.label4.Size = new System.Drawing.Size(76, 13);
  153. this.label4.TabIndex = 1;
  154. this.label4.Text = "Service Secret";
  155. //
  156. // restBaseTextBox
  157. //
  158. this.restBaseTextBox.Location = new System.Drawing.Point(91, 19);
  159. this.restBaseTextBox.Name = "restBaseTextBox";
  160. this.restBaseTextBox.Size = new System.Drawing.Size(187, 20);
  161. this.restBaseTextBox.TabIndex = 2;
  162. //
  163. // label3
  164. //
  165. this.label3.AutoSize = true;
  166. this.label3.Location = new System.Drawing.Point(13, 48);
  167. this.label3.Name = "label3";
  168. this.label3.Size = new System.Drawing.Size(56, 13);
  169. this.label3.TabIndex = 1;
  170. this.label3.Text = "Service ID";
  171. //
  172. // label2
  173. //
  174. this.label2.AutoSize = true;
  175. this.label2.Location = new System.Drawing.Point(13, 22);
  176. this.label2.Name = "label2";
  177. this.label2.Size = new System.Drawing.Size(58, 13);
  178. this.label2.TabIndex = 1;
  179. this.label2.Text = "REST base";
  180. //
  181. // responseTextBox
  182. //
  183. this.responseTextBox.Location = new System.Drawing.Point(16, 19);
  184. this.responseTextBox.Multiline = true;
  185. this.responseTextBox.Name = "responseTextBox";
  186. this.responseTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  187. this.responseTextBox.Size = new System.Drawing.Size(278, 213);
  188. this.responseTextBox.TabIndex = 4;
  189. //
  190. // groupBox2
  191. //
  192. this.groupBox2.Controls.Add(this.responseTextBox);
  193. this.groupBox2.Location = new System.Drawing.Point(336, 12);
  194. this.groupBox2.Name = "groupBox2";
  195. this.groupBox2.Size = new System.Drawing.Size(300, 238);
  196. this.groupBox2.TabIndex = 5;
  197. this.groupBox2.TabStop = false;
  198. this.groupBox2.Text = "Response";
  199. //
  200. // tabControl1
  201. //
  202. this.tabControl1.Controls.Add(this.tabPage1);
  203. this.tabControl1.Controls.Add(this.tabPage2);
  204. this.tabControl1.Controls.Add(this.tabPage4);
  205. this.tabControl1.Controls.Add(this.tabPage5);
  206. this.tabControl1.Controls.Add(this.tabPage3);
  207. this.tabControl1.Enabled = false;
  208. this.tabControl1.Location = new System.Drawing.Point(12, 175);
  209. this.tabControl1.Name = "tabControl1";
  210. this.tabControl1.SelectedIndex = 0;
  211. this.tabControl1.Size = new System.Drawing.Size(318, 231);
  212. this.tabControl1.TabIndex = 6;
  213. //
  214. // tabPage1
  215. //
  216. this.tabPage1.Controls.Add(this.nid_PushButton);
  217. this.tabPage1.Controls.Add(this.nid_wakeUpCheckBox);
  218. this.tabPage1.Controls.Add(this.nid_encodingTextBox);
  219. this.tabPage1.Controls.Add(this.label8);
  220. this.tabPage1.Controls.Add(this.nid_contentTypeTextBox);
  221. this.tabPage1.Controls.Add(this.label7);
  222. this.tabPage1.Controls.Add(this.nid_payloadTextBox);
  223. this.tabPage1.Controls.Add(this.label6);
  224. this.tabPage1.Controls.Add(this.notificationIdTextBox);
  225. this.tabPage1.Controls.Add(this.label5);
  226. this.tabPage1.Location = new System.Drawing.Point(4, 22);
  227. this.tabPage1.Name = "tabPage1";
  228. this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
  229. this.tabPage1.Size = new System.Drawing.Size(310, 205);
  230. this.tabPage1.TabIndex = 0;
  231. this.tabPage1.Text = "Push (NID)";
  232. this.tabPage1.UseVisualStyleBackColor = true;
  233. //
  234. // nid_PushButton
  235. //
  236. this.nid_PushButton.Location = new System.Drawing.Point(194, 161);
  237. this.nid_PushButton.Name = "nid_PushButton";
  238. this.nid_PushButton.Size = new System.Drawing.Size(75, 23);
  239. this.nid_PushButton.TabIndex = 3;
  240. this.nid_PushButton.Text = "Push";
  241. this.nid_PushButton.UseVisualStyleBackColor = true;
  242. this.nid_PushButton.Click += new System.EventHandler(this.nid_PushButton_Click);
  243. //
  244. // nid_wakeUpCheckBox
  245. //
  246. this.nid_wakeUpCheckBox.AutoSize = true;
  247. this.nid_wakeUpCheckBox.Location = new System.Drawing.Point(87, 110);
  248. this.nid_wakeUpCheckBox.Name = "nid_wakeUpCheckBox";
  249. this.nid_wakeUpCheckBox.Size = new System.Drawing.Size(73, 17);
  250. this.nid_wakeUpCheckBox.TabIndex = 2;
  251. this.nid_wakeUpCheckBox.Text = "Wake up?";
  252. this.nid_wakeUpCheckBox.UseVisualStyleBackColor = true;
  253. //
  254. // nid_encodingTextBox
  255. //
  256. this.nid_encodingTextBox.Location = new System.Drawing.Point(87, 84);
  257. this.nid_encodingTextBox.Name = "nid_encodingTextBox";
  258. this.nid_encodingTextBox.Size = new System.Drawing.Size(182, 20);
  259. this.nid_encodingTextBox.TabIndex = 1;
  260. //
  261. // label8
  262. //
  263. this.label8.AutoSize = true;
  264. this.label8.Location = new System.Drawing.Point(9, 87);
  265. this.label8.Name = "label8";
  266. this.label8.Size = new System.Drawing.Size(50, 13);
  267. this.label8.TabIndex = 0;
  268. this.label8.Text = "Encoding";
  269. //
  270. // nid_contentTypeTextBox
  271. //
  272. this.nid_contentTypeTextBox.Location = new System.Drawing.Point(87, 58);
  273. this.nid_contentTypeTextBox.Name = "nid_contentTypeTextBox";
  274. this.nid_contentTypeTextBox.Size = new System.Drawing.Size(182, 20);
  275. this.nid_contentTypeTextBox.TabIndex = 1;
  276. //
  277. // label7
  278. //
  279. this.label7.AutoSize = true;
  280. this.label7.Location = new System.Drawing.Point(9, 61);
  281. this.label7.Name = "label7";
  282. this.label7.Size = new System.Drawing.Size(71, 13);
  283. this.label7.TabIndex = 0;
  284. this.label7.Text = "Content type";
  285. //
  286. // nid_payloadTextBox
  287. //
  288. this.nid_payloadTextBox.Location = new System.Drawing.Point(87, 32);
  289. this.nid_payloadTextBox.Name = "nid_payloadTextBox";
  290. this.nid_payloadTextBox.Size = new System.Drawing.Size(182, 20);
  291. this.nid_payloadTextBox.TabIndex = 1;
  292. //
  293. // label6
  294. //
  295. this.label6.AutoSize = true;
  296. this.label6.Location = new System.Drawing.Point(9, 35);
  297. this.label6.Name = "label6";
  298. this.label6.Size = new System.Drawing.Size(45, 13);
  299. this.label6.TabIndex = 0;
  300. this.label6.Text = "Payload";
  301. //
  302. // notificationIdTextBox
  303. //
  304. this.notificationIdTextBox.Location = new System.Drawing.Point(87, 7);
  305. this.notificationIdTextBox.Name = "notificationIdTextBox";
  306. this.notificationIdTextBox.Size = new System.Drawing.Size(182, 20);
  307. this.notificationIdTextBox.TabIndex = 1;
  308. //
  309. // label5
  310. //
  311. this.label5.AutoSize = true;
  312. this.label5.Location = new System.Drawing.Point(9, 10);
  313. this.label5.Name = "label5";
  314. this.label5.Size = new System.Drawing.Size(25, 13);
  315. this.label5.TabIndex = 0;
  316. this.label5.Text = "NID";
  317. //
  318. // tabPage2
  319. //
  320. this.tabPage2.Controls.Add(this.jid_PushButton);
  321. this.tabPage2.Controls.Add(this.jid_wakeUpCheckBox);
  322. this.tabPage2.Controls.Add(this.jid_encodingTextBox);
  323. this.tabPage2.Controls.Add(this.label9);
  324. this.tabPage2.Controls.Add(this.jid_contentTypeTextBox);
  325. this.tabPage2.Controls.Add(this.label10);
  326. this.tabPage2.Controls.Add(this.jid_payLoadTextBox);
  327. this.tabPage2.Controls.Add(this.label11);
  328. this.tabPage2.Controls.Add(this.jid_applicationIdTextBox);
  329. this.tabPage2.Controls.Add(this.label13);
  330. this.tabPage2.Controls.Add(this.jidTextBox);
  331. this.tabPage2.Controls.Add(this.label12);
  332. this.tabPage2.Location = new System.Drawing.Point(4, 22);
  333. this.tabPage2.Name = "tabPage2";
  334. this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
  335. this.tabPage2.Size = new System.Drawing.Size(310, 205);
  336. this.tabPage2.TabIndex = 1;
  337. this.tabPage2.Text = "Push (JID)";
  338. this.tabPage2.UseVisualStyleBackColor = true;
  339. //
  340. // jid_PushButton
  341. //
  342. this.jid_PushButton.Location = new System.Drawing.Point(194, 161);
  343. this.jid_PushButton.Name = "jid_PushButton";
  344. this.jid_PushButton.Size = new System.Drawing.Size(75, 23);
  345. this.jid_PushButton.TabIndex = 13;
  346. this.jid_PushButton.Text = "Push";
  347. this.jid_PushButton.UseVisualStyleBackColor = true;
  348. this.jid_PushButton.Click += new System.EventHandler(this.jid_PushButton_Click);
  349. //
  350. // jid_wakeUpCheckBox
  351. //
  352. this.jid_wakeUpCheckBox.AutoSize = true;
  353. this.jid_wakeUpCheckBox.Location = new System.Drawing.Point(87, 136);
  354. this.jid_wakeUpCheckBox.Name = "jid_wakeUpCheckBox";
  355. this.jid_wakeUpCheckBox.Size = new System.Drawing.Size(73, 17);
  356. this.jid_wakeUpCheckBox.TabIndex = 12;
  357. this.jid_wakeUpCheckBox.Text = "Wake up?";
  358. this.jid_wakeUpCheckBox.UseVisualStyleBackColor = true;
  359. //
  360. // jid_encodingTextBox
  361. //
  362. this.jid_encodingTextBox.Location = new System.Drawing.Point(87, 110);
  363. this.jid_encodingTextBox.Name = "jid_encodingTextBox";
  364. this.jid_encodingTextBox.Size = new System.Drawing.Size(182, 20);
  365. this.jid_encodingTextBox.TabIndex = 10;
  366. //
  367. // label9
  368. //
  369. this.label9.AutoSize = true;
  370. this.label9.Location = new System.Drawing.Point(9, 113);
  371. this.label9.Name = "label9";
  372. this.label9.Size = new System.Drawing.Size(50, 13);
  373. this.label9.TabIndex = 4;
  374. this.label9.Text = "Encoding";
  375. //
  376. // jid_contentTypeTextBox
  377. //
  378. this.jid_contentTypeTextBox.Location = new System.Drawing.Point(87, 84);
  379. this.jid_contentTypeTextBox.Name = "jid_contentTypeTextBox";
  380. this.jid_contentTypeTextBox.Size = new System.Drawing.Size(182, 20);
  381. this.jid_contentTypeTextBox.TabIndex = 11;
  382. //
  383. // label10
  384. //
  385. this.label10.AutoSize = true;
  386. this.label10.Location = new System.Drawing.Point(9, 87);
  387. this.label10.Name = "label10";
  388. this.label10.Size = new System.Drawing.Size(71, 13);
  389. this.label10.TabIndex = 5;
  390. this.label10.Text = "Content type";
  391. //
  392. // jid_payLoadTextBox
  393. //
  394. this.jid_payLoadTextBox.Location = new System.Drawing.Point(87, 58);
  395. this.jid_payLoadTextBox.Name = "jid_payLoadTextBox";
  396. this.jid_payLoadTextBox.Size = new System.Drawing.Size(182, 20);
  397. this.jid_payLoadTextBox.TabIndex = 9;
  398. //
  399. // label11
  400. //
  401. this.label11.AutoSize = true;
  402. this.label11.Location = new System.Drawing.Point(9, 61);
  403. this.label11.Name = "label11";
  404. this.label11.Size = new System.Drawing.Size(45, 13);
  405. this.label11.TabIndex = 6;
  406. this.label11.Text = "Payload";
  407. //
  408. // jid_applicationIdTextBox
  409. //
  410. this.jid_applicationIdTextBox.Location = new System.Drawing.Point(87, 32);
  411. this.jid_applicationIdTextBox.Name = "jid_applicationIdTextBox";
  412. this.jid_applicationIdTextBox.Size = new System.Drawing.Size(182, 20);
  413. this.jid_applicationIdTextBox.TabIndex = 8;
  414. //
  415. // label13
  416. //
  417. this.label13.AutoSize = true;
  418. this.label13.Location = new System.Drawing.Point(9, 35);
  419. this.label13.Name = "label13";
  420. this.label13.Size = new System.Drawing.Size(73, 13);
  421. this.label13.TabIndex = 7;
  422. this.label13.Text = "Application ID";
  423. //
  424. // jidTextBox
  425. //
  426. this.jidTextBox.Location = new System.Drawing.Point(87, 7);
  427. this.jidTextBox.Name = "jidTextBox";
  428. this.jidTextBox.Size = new System.Drawing.Size(182, 20);
  429. this.jidTextBox.TabIndex = 8;
  430. //
  431. // label12
  432. //
  433. this.label12.AutoSize = true;
  434. this.label12.Location = new System.Drawing.Point(9, 10);
  435. this.label12.Name = "label12";
  436. this.label12.Size = new System.Drawing.Size(23, 13);
  437. this.label12.TabIndex = 7;
  438. this.label12.Text = "JID";
  439. //
  440. // tabPage4
  441. //
  442. this.tabPage4.Controls.Add(this.pingNid_Button);
  443. this.tabPage4.Controls.Add(this.pingNotificationIdTextBox);
  444. this.tabPage4.Controls.Add(this.label14);
  445. this.tabPage4.Location = new System.Drawing.Point(4, 22);
  446. this.tabPage4.Name = "tabPage4";
  447. this.tabPage4.Size = new System.Drawing.Size(310, 205);
  448. this.tabPage4.TabIndex = 3;
  449. this.tabPage4.Text = "Ping (NID)";
  450. this.tabPage4.UseVisualStyleBackColor = true;
  451. //
  452. // pingNid_Button
  453. //
  454. this.pingNid_Button.Location = new System.Drawing.Point(194, 33);
  455. this.pingNid_Button.Name = "pingNid_Button";
  456. this.pingNid_Button.Size = new System.Drawing.Size(75, 23);
  457. this.pingNid_Button.TabIndex = 4;
  458. this.pingNid_Button.Text = "Ping";
  459. this.pingNid_Button.UseVisualStyleBackColor = true;
  460. this.pingNid_Button.Click += new System.EventHandler(this.pingNid_Button_Click);
  461. //
  462. // pingNotificationIdTextBox
  463. //
  464. this.pingNotificationIdTextBox.Location = new System.Drawing.Point(87, 7);
  465. this.pingNotificationIdTextBox.Name = "pingNotificationIdTextBox";
  466. this.pingNotificationIdTextBox.Size = new System.Drawing.Size(182, 20);
  467. this.pingNotificationIdTextBox.TabIndex = 3;
  468. //
  469. // label14
  470. //
  471. this.label14.AutoSize = true;
  472. this.label14.Location = new System.Drawing.Point(9, 10);
  473. this.label14.Name = "label14";
  474. this.label14.Size = new System.Drawing.Size(25, 13);
  475. this.label14.TabIndex = 2;
  476. this.label14.Text = "NID";
  477. //
  478. // tabPage5
  479. //
  480. this.tabPage5.Controls.Add(this.pingjid_applicationIdTextBox);
  481. this.tabPage5.Controls.Add(this.label16);
  482. this.tabPage5.Controls.Add(this.pingjid_Button);
  483. this.tabPage5.Controls.Add(this.pingJidTextBox);
  484. this.tabPage5.Controls.Add(this.label15);
  485. this.tabPage5.Location = new System.Drawing.Point(4, 22);
  486. this.tabPage5.Name = "tabPage5";
  487. this.tabPage5.Size = new System.Drawing.Size(310, 205);
  488. this.tabPage5.TabIndex = 4;
  489. this.tabPage5.Text = "Ping (JID)";
  490. this.tabPage5.UseVisualStyleBackColor = true;
  491. //
  492. // pingjid_applicationIdTextBox
  493. //
  494. this.pingjid_applicationIdTextBox.Location = new System.Drawing.Point(87, 32);
  495. this.pingjid_applicationIdTextBox.Name = "pingjid_applicationIdTextBox";
  496. this.pingjid_applicationIdTextBox.Size = new System.Drawing.Size(182, 20);
  497. this.pingjid_applicationIdTextBox.TabIndex = 10;
  498. //
  499. // label16
  500. //
  501. this.label16.AutoSize = true;
  502. this.label16.Location = new System.Drawing.Point(9, 35);
  503. this.label16.Name = "label16";
  504. this.label16.Size = new System.Drawing.Size(73, 13);
  505. this.label16.TabIndex = 9;
  506. this.label16.Text = "Application ID";
  507. //
  508. // pingjid_Button
  509. //
  510. this.pingjid_Button.Location = new System.Drawing.Point(194, 61);
  511. this.pingjid_Button.Name = "pingjid_Button";
  512. this.pingjid_Button.Size = new System.Drawing.Size(75, 23);
  513. this.pingjid_Button.TabIndex = 7;
  514. this.pingjid_Button.Text = "Ping";
  515. this.pingjid_Button.UseVisualStyleBackColor = true;
  516. this.pingjid_Button.Click += new System.EventHandler(this.pingjid_Button_Click);
  517. //
  518. // pingJidTextBox
  519. //
  520. this.pingJidTextBox.Location = new System.Drawing.Point(87, 7);
  521. this.pingJidTextBox.Name = "pingJidTextBox";
  522. this.pingJidTextBox.Size = new System.Drawing.Size(182, 20);
  523. this.pingJidTextBox.TabIndex = 6;
  524. //
  525. // label15
  526. //
  527. this.label15.AutoSize = true;
  528. this.label15.Location = new System.Drawing.Point(9, 10);
  529. this.label15.Name = "label15";
  530. this.label15.Size = new System.Drawing.Size(23, 13);
  531. this.label15.TabIndex = 5;
  532. this.label15.Text = "JID";
  533. //
  534. // tabPage3
  535. //
  536. this.tabPage3.Controls.Add(this.queryLimitationsButton);
  537. this.tabPage3.Controls.Add(this.pingServiceButton);
  538. this.tabPage3.Controls.Add(this.versionButton);
  539. this.tabPage3.Location = new System.Drawing.Point(4, 22);
  540. this.tabPage3.Name = "tabPage3";
  541. this.tabPage3.Size = new System.Drawing.Size(310, 205);
  542. this.tabPage3.TabIndex = 2;
  543. this.tabPage3.Text = "Other";
  544. this.tabPage3.UseVisualStyleBackColor = true;
  545. //
  546. // queryLimitationsButton
  547. //
  548. this.queryLimitationsButton.Location = new System.Drawing.Point(10, 74);
  549. this.queryLimitationsButton.Name = "queryLimitationsButton";
  550. this.queryLimitationsButton.Size = new System.Drawing.Size(126, 23);
  551. this.queryLimitationsButton.TabIndex = 0;
  552. this.queryLimitationsButton.Text = "Query Limitations";
  553. this.queryLimitationsButton.UseVisualStyleBackColor = true;
  554. this.queryLimitationsButton.Click += new System.EventHandler(this.queryLimitationsButton_Click);
  555. //
  556. // pingServiceButton
  557. //
  558. this.pingServiceButton.Location = new System.Drawing.Point(10, 45);
  559. this.pingServiceButton.Name = "pingServiceButton";
  560. this.pingServiceButton.Size = new System.Drawing.Size(126, 23);
  561. this.pingServiceButton.TabIndex = 0;
  562. this.pingServiceButton.Text = "Ping Service";
  563. this.pingServiceButton.UseVisualStyleBackColor = true;
  564. this.pingServiceButton.Click += new System.EventHandler(this.pingServiceButton_Click);
  565. //
  566. // versionButton
  567. //
  568. this.versionButton.Location = new System.Drawing.Point(12, 16);
  569. this.versionButton.Name = "versionButton";
  570. this.versionButton.Size = new System.Drawing.Size(124, 23);
  571. this.versionButton.TabIndex = 0;
  572. this.versionButton.Text = "Version";
  573. this.versionButton.UseVisualStyleBackColor = true;
  574. this.versionButton.Click += new System.EventHandler(this.versionButton_Click);
  575. //
  576. // MainForm
  577. //
  578. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  579. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  580. this.ClientSize = new System.Drawing.Size(648, 414);
  581. this.Controls.Add(this.tabControl1);
  582. this.Controls.Add(this.groupBox2);
  583. this.Controls.Add(this.groupBox1);
  584. this.Name = "MainForm";
  585. this.Text = "Notifications API Sandbox";
  586. this.groupBox1.ResumeLayout(false);
  587. this.groupBox1.PerformLayout();
  588. this.groupBox2.ResumeLayout(false);
  589. this.groupBox2.PerformLayout();
  590. this.tabControl1.ResumeLayout(false);
  591. this.tabPage1.ResumeLayout(false);
  592. this.tabPage1.PerformLayout();
  593. this.tabPage2.ResumeLayout(false);
  594. this.tabPage2.PerformLayout();
  595. this.tabPage4.ResumeLayout(false);
  596. this.tabPage4.PerformLayout();
  597. this.tabPage5.ResumeLayout(false);
  598. this.tabPage5.PerformLayout();
  599. this.tabPage3.ResumeLayout(false);
  600. this.ResumeLayout(false);
  601. }
  602. #endregion
  603. private System.Windows.Forms.GroupBox groupBox1;
  604. private System.Windows.Forms.TextBox restBaseTextBox;
  605. private System.Windows.Forms.Label label2;
  606. private System.Windows.Forms.TextBox responseTextBox;
  607. private System.Windows.Forms.GroupBox groupBox2;
  608. private System.Windows.Forms.TabControl tabControl1;
  609. private System.Windows.Forms.TabPage tabPage1;
  610. private System.Windows.Forms.TabPage tabPage2;
  611. private System.Windows.Forms.TabPage tabPage3;
  612. private System.Windows.Forms.TextBox apiVersionTextBox;
  613. private System.Windows.Forms.TextBox serviceSecretTextBox;
  614. private System.Windows.Forms.Label label1;
  615. private System.Windows.Forms.TextBox serviceIdTextBox;
  616. private System.Windows.Forms.Label label4;
  617. private System.Windows.Forms.Label label3;
  618. private System.Windows.Forms.TextBox notificationIdTextBox;
  619. private System.Windows.Forms.Label label5;
  620. private System.Windows.Forms.CheckBox nid_wakeUpCheckBox;
  621. private System.Windows.Forms.TextBox nid_payloadTextBox;
  622. private System.Windows.Forms.Label label6;
  623. private System.Windows.Forms.TextBox nid_encodingTextBox;
  624. private System.Windows.Forms.Label label8;
  625. private System.Windows.Forms.TextBox nid_contentTypeTextBox;
  626. private System.Windows.Forms.Label label7;
  627. private System.Windows.Forms.Button nid_PushButton;
  628. private System.Windows.Forms.Button jid_PushButton;
  629. private System.Windows.Forms.CheckBox jid_wakeUpCheckBox;
  630. private System.Windows.Forms.TextBox jid_encodingTextBox;
  631. private System.Windows.Forms.Label label9;
  632. private System.Windows.Forms.TextBox jid_contentTypeTextBox;
  633. private System.Windows.Forms.Label label10;
  634. private System.Windows.Forms.TextBox jid_payLoadTextBox;
  635. private System.Windows.Forms.Label label11;
  636. private System.Windows.Forms.TextBox jid_applicationIdTextBox;
  637. private System.Windows.Forms.Label label13;
  638. private System.Windows.Forms.TextBox jidTextBox;
  639. private System.Windows.Forms.Label label12;
  640. private System.Windows.Forms.Button queryLimitationsButton;
  641. private System.Windows.Forms.Button pingServiceButton;
  642. private System.Windows.Forms.Button versionButton;
  643. private System.Windows.Forms.TabPage tabPage4;
  644. private System.Windows.Forms.Button pingNid_Button;
  645. private System.Windows.Forms.TextBox pingNotificationIdTextBox;
  646. private System.Windows.Forms.Label label14;
  647. private System.Windows.Forms.TabPage tabPage5;
  648. private System.Windows.Forms.TextBox pingjid_applicationIdTextBox;
  649. private System.Windows.Forms.Label label16;
  650. private System.Windows.Forms.Button pingjid_Button;
  651. private System.Windows.Forms.TextBox pingJidTextBox;
  652. private System.Windows.Forms.Label label15;
  653. private System.Windows.Forms.Button initializeButton;
  654. }
  655. }