comparison ServerMonitor/Controls/HttpCheckControl.Designer.cs @ 18:b713b9db4c82

HTTP checks.
author Brad Greco <brad@bgreco.net>
date Mon, 27 May 2019 15:40:44 -0400
parents 052aa62cb42a
children
comparison
equal deleted inserted replaced
17:68d7834dc28e 18:b713b9db4c82
42 this.ResponseCodePanel = new System.Windows.Forms.Panel(); 42 this.ResponseCodePanel = new System.Windows.Forms.Panel();
43 this.ResponseCodeCheckBox = new System.Windows.Forms.CheckBox(); 43 this.ResponseCodeCheckBox = new System.Windows.Forms.CheckBox();
44 this.ResponseCodeTextBox = new System.Windows.Forms.TextBox(); 44 this.ResponseCodeTextBox = new System.Windows.Forms.TextBox();
45 this.HttpUrlLabel = new System.Windows.Forms.Label(); 45 this.HttpUrlLabel = new System.Windows.Forms.Label();
46 this.UrlTextBox = new System.Windows.Forms.TextBox(); 46 this.UrlTextBox = new System.Windows.Forms.TextBox();
47 this.MethodLabel = new System.Windows.Forms.Label();
48 this.MethodComboBox = new System.Windows.Forms.ComboBox();
47 this.CheckGroupBox.SuspendLayout(); 49 this.CheckGroupBox.SuspendLayout();
48 this.ResponseBodyPanel.SuspendLayout(); 50 this.ResponseBodyPanel.SuspendLayout();
49 this.ResponseLengthPanel.SuspendLayout(); 51 this.ResponseLengthPanel.SuspendLayout();
50 this.ResponseCodePanel.SuspendLayout(); 52 this.ResponseCodePanel.SuspendLayout();
51 this.SuspendLayout(); 53 this.SuspendLayout();
52 // 54 //
53 // CheckGroupBox 55 // CheckGroupBox
54 // 56 //
57 this.CheckGroupBox.Controls.Add(this.MethodComboBox);
58 this.CheckGroupBox.Controls.Add(this.MethodLabel);
55 this.CheckGroupBox.Controls.Add(this.ResponseBodyPanel); 59 this.CheckGroupBox.Controls.Add(this.ResponseBodyPanel);
56 this.CheckGroupBox.Controls.Add(this.ResponseLengthPanel); 60 this.CheckGroupBox.Controls.Add(this.ResponseLengthPanel);
57 this.CheckGroupBox.Controls.Add(this.ResponseCodePanel); 61 this.CheckGroupBox.Controls.Add(this.ResponseCodePanel);
58 this.CheckGroupBox.Controls.Add(this.HttpUrlLabel); 62 this.CheckGroupBox.Controls.Add(this.HttpUrlLabel);
59 this.CheckGroupBox.Controls.Add(this.UrlTextBox); 63 this.CheckGroupBox.Controls.Add(this.UrlTextBox);
208 // 212 //
209 this.HttpUrlLabel.AutoSize = true; 213 this.HttpUrlLabel.AutoSize = true;
210 this.HttpUrlLabel.Location = new System.Drawing.Point(6, 25); 214 this.HttpUrlLabel.Location = new System.Drawing.Point(6, 25);
211 this.HttpUrlLabel.Name = "HttpUrlLabel"; 215 this.HttpUrlLabel.Name = "HttpUrlLabel";
212 this.HttpUrlLabel.Size = new System.Drawing.Size(32, 13); 216 this.HttpUrlLabel.Size = new System.Drawing.Size(32, 13);
213 this.HttpUrlLabel.TabIndex = 17; 217 this.HttpUrlLabel.TabIndex = 10;
214 this.HttpUrlLabel.Text = "&URL:"; 218 this.HttpUrlLabel.Text = "&URL:";
215 // 219 //
216 // UrlTextBox 220 // UrlTextBox
217 // 221 //
218 this.UrlTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 222 this.UrlTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
219 | System.Windows.Forms.AnchorStyles.Right))); 223 | System.Windows.Forms.AnchorStyles.Right)));
220 this.UrlTextBox.Location = new System.Drawing.Point(44, 22); 224 this.UrlTextBox.Location = new System.Drawing.Point(44, 22);
221 this.UrlTextBox.Name = "UrlTextBox"; 225 this.UrlTextBox.Name = "UrlTextBox";
222 this.UrlTextBox.Size = new System.Drawing.Size(476, 20); 226 this.UrlTextBox.Size = new System.Drawing.Size(361, 20);
223 this.UrlTextBox.TabIndex = 18; 227 this.UrlTextBox.TabIndex = 11;
228 //
229 // MethodLabel
230 //
231 this.MethodLabel.AutoSize = true;
232 this.MethodLabel.Location = new System.Drawing.Point(411, 25);
233 this.MethodLabel.Name = "MethodLabel";
234 this.MethodLabel.Size = new System.Drawing.Size(46, 13);
235 this.MethodLabel.TabIndex = 12;
236 this.MethodLabel.Text = "&Method:";
237 //
238 // MethodComboBox
239 //
240 this.MethodComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
241 this.MethodComboBox.FormattingEnabled = true;
242 this.MethodComboBox.Items.AddRange(new object[] {
243 "GET",
244 "HEAD"});
245 this.MethodComboBox.Location = new System.Drawing.Point(463, 22);
246 this.MethodComboBox.Name = "MethodComboBox";
247 this.MethodComboBox.Size = new System.Drawing.Size(57, 21);
248 this.MethodComboBox.TabIndex = 13;
249 this.MethodComboBox.SelectedIndexChanged += new System.EventHandler(this.MethodComboBox_SelectedIndexChanged);
224 // 250 //
225 // HttpCheckControl 251 // HttpCheckControl
226 // 252 //
227 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 253 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
228 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 254 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
229 this.BackColor = System.Drawing.SystemColors.Control; 255 this.BackColor = System.Drawing.SystemColors.Control;
230 this.Name = "HttpCheckControl"; 256 this.Name = "HttpCheckControl";
231 this.Size = new System.Drawing.Size(526, 142); 257 this.Size = new System.Drawing.Size(526, 142);
258 this.Load += new System.EventHandler(this.HttpCheckControl_Load);
232 this.CheckGroupBox.ResumeLayout(false); 259 this.CheckGroupBox.ResumeLayout(false);
233 this.CheckGroupBox.PerformLayout(); 260 this.CheckGroupBox.PerformLayout();
234 this.ResponseBodyPanel.ResumeLayout(false); 261 this.ResponseBodyPanel.ResumeLayout(false);
235 this.ResponseBodyPanel.PerformLayout(); 262 this.ResponseBodyPanel.PerformLayout();
236 this.ResponseLengthPanel.ResumeLayout(false); 263 this.ResponseLengthPanel.ResumeLayout(false);
257 private System.Windows.Forms.Panel ResponseCodePanel; 284 private System.Windows.Forms.Panel ResponseCodePanel;
258 private System.Windows.Forms.CheckBox ResponseCodeCheckBox; 285 private System.Windows.Forms.CheckBox ResponseCodeCheckBox;
259 private System.Windows.Forms.TextBox ResponseCodeTextBox; 286 private System.Windows.Forms.TextBox ResponseCodeTextBox;
260 private System.Windows.Forms.Label HttpUrlLabel; 287 private System.Windows.Forms.Label HttpUrlLabel;
261 private System.Windows.Forms.TextBox UrlTextBox; 288 private System.Windows.Forms.TextBox UrlTextBox;
289 private System.Windows.Forms.Label MethodLabel;
290 private System.Windows.Forms.ComboBox MethodComboBox;
262 } 291 }
263 } 292 }