diff 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
line wrap: on
line diff
--- a/ServerMonitor/Controls/HttpCheckControl.Designer.cs	Sat May 25 15:14:26 2019 -0400
+++ b/ServerMonitor/Controls/HttpCheckControl.Designer.cs	Mon May 27 15:40:44 2019 -0400
@@ -44,6 +44,8 @@
             this.ResponseCodeTextBox = new System.Windows.Forms.TextBox();
             this.HttpUrlLabel = new System.Windows.Forms.Label();
             this.UrlTextBox = new System.Windows.Forms.TextBox();
+            this.MethodLabel = new System.Windows.Forms.Label();
+            this.MethodComboBox = new System.Windows.Forms.ComboBox();
             this.CheckGroupBox.SuspendLayout();
             this.ResponseBodyPanel.SuspendLayout();
             this.ResponseLengthPanel.SuspendLayout();
@@ -52,6 +54,8 @@
             // 
             // CheckGroupBox
             // 
+            this.CheckGroupBox.Controls.Add(this.MethodComboBox);
+            this.CheckGroupBox.Controls.Add(this.MethodLabel);
             this.CheckGroupBox.Controls.Add(this.ResponseBodyPanel);
             this.CheckGroupBox.Controls.Add(this.ResponseLengthPanel);
             this.CheckGroupBox.Controls.Add(this.ResponseCodePanel);
@@ -210,7 +214,7 @@
             this.HttpUrlLabel.Location = new System.Drawing.Point(6, 25);
             this.HttpUrlLabel.Name = "HttpUrlLabel";
             this.HttpUrlLabel.Size = new System.Drawing.Size(32, 13);
-            this.HttpUrlLabel.TabIndex = 17;
+            this.HttpUrlLabel.TabIndex = 10;
             this.HttpUrlLabel.Text = "&URL:";
             // 
             // UrlTextBox
@@ -219,8 +223,30 @@
             | System.Windows.Forms.AnchorStyles.Right)));
             this.UrlTextBox.Location = new System.Drawing.Point(44, 22);
             this.UrlTextBox.Name = "UrlTextBox";
-            this.UrlTextBox.Size = new System.Drawing.Size(476, 20);
-            this.UrlTextBox.TabIndex = 18;
+            this.UrlTextBox.Size = new System.Drawing.Size(361, 20);
+            this.UrlTextBox.TabIndex = 11;
+            // 
+            // MethodLabel
+            // 
+            this.MethodLabel.AutoSize = true;
+            this.MethodLabel.Location = new System.Drawing.Point(411, 25);
+            this.MethodLabel.Name = "MethodLabel";
+            this.MethodLabel.Size = new System.Drawing.Size(46, 13);
+            this.MethodLabel.TabIndex = 12;
+            this.MethodLabel.Text = "&Method:";
+            // 
+            // MethodComboBox
+            // 
+            this.MethodComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
+            this.MethodComboBox.FormattingEnabled = true;
+            this.MethodComboBox.Items.AddRange(new object[] {
+            "GET",
+            "HEAD"});
+            this.MethodComboBox.Location = new System.Drawing.Point(463, 22);
+            this.MethodComboBox.Name = "MethodComboBox";
+            this.MethodComboBox.Size = new System.Drawing.Size(57, 21);
+            this.MethodComboBox.TabIndex = 13;
+            this.MethodComboBox.SelectedIndexChanged += new System.EventHandler(this.MethodComboBox_SelectedIndexChanged);
             // 
             // HttpCheckControl
             // 
@@ -229,6 +255,7 @@
             this.BackColor = System.Drawing.SystemColors.Control;
             this.Name = "HttpCheckControl";
             this.Size = new System.Drawing.Size(526, 142);
+            this.Load += new System.EventHandler(this.HttpCheckControl_Load);
             this.CheckGroupBox.ResumeLayout(false);
             this.CheckGroupBox.PerformLayout();
             this.ResponseBodyPanel.ResumeLayout(false);
@@ -259,5 +286,7 @@
         private System.Windows.Forms.TextBox ResponseCodeTextBox;
         private System.Windows.Forms.Label HttpUrlLabel;
         private System.Windows.Forms.TextBox UrlTextBox;
+        private System.Windows.Forms.Label MethodLabel;
+        private System.Windows.Forms.ComboBox MethodComboBox;
     }
 }