comparison ServerMonitor/Controls/HttpCheckControl.Designer.cs @ 0:3e1a2131f897

Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
author Brad Greco <brad@bgreco.net>
date Mon, 31 Dec 2018 18:32:14 -0500
parents
children 052aa62cb42a
comparison
equal deleted inserted replaced
-1:000000000000 0:3e1a2131f897
1 namespace ServerMonitorApp
2 {
3 partial class HttpCheckControl
4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22
23 #region Component Designer generated code
24
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
30 {
31 this.ResponseBodyPanel = new System.Windows.Forms.Panel();
32 this.ResponseBodyRegexCheckBox = new System.Windows.Forms.CheckBox();
33 this.ResponseBodyComboBox = new ServerMonitorApp.MatchComboBox();
34 this.ResponseBodyCheckBox = new System.Windows.Forms.CheckBox();
35 this.ResponseBodyTextBox = new System.Windows.Forms.TextBox();
36 this.ResponseLengthPanel = new System.Windows.Forms.Panel();
37 this.ResponseLengthCheckbox = new System.Windows.Forms.CheckBox();
38 this.ResponseLengthMaxTextBox = new System.Windows.Forms.TextBox();
39 this.ResponseLengthKbLabel = new System.Windows.Forms.Label();
40 this.ResponseLengthMinTextBox = new System.Windows.Forms.TextBox();
41 this.ResponseLengthAndLabel = new System.Windows.Forms.Label();
42 this.ResponseCodePanel = new System.Windows.Forms.Panel();
43 this.ResponseCodeCheckBox = new System.Windows.Forms.CheckBox();
44 this.ResponseCodeTextBox = new System.Windows.Forms.TextBox();
45 this.HttpUrlLabel = new System.Windows.Forms.Label();
46 this.UrlTextBox = new System.Windows.Forms.TextBox();
47 this.CheckGroupBox.SuspendLayout();
48 this.ResponseBodyPanel.SuspendLayout();
49 this.ResponseLengthPanel.SuspendLayout();
50 this.ResponseCodePanel.SuspendLayout();
51 this.SuspendLayout();
52 //
53 // CheckGroupBox
54 //
55 this.CheckGroupBox.Controls.Add(this.ResponseBodyPanel);
56 this.CheckGroupBox.Controls.Add(this.ResponseLengthPanel);
57 this.CheckGroupBox.Controls.Add(this.ResponseCodePanel);
58 this.CheckGroupBox.Controls.Add(this.HttpUrlLabel);
59 this.CheckGroupBox.Controls.Add(this.UrlTextBox);
60 this.CheckGroupBox.Size = new System.Drawing.Size(526, 142);
61 this.CheckGroupBox.Text = "null";
62 //
63 // ResponseBodyPanel
64 //
65 this.ResponseBodyPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
66 | System.Windows.Forms.AnchorStyles.Right)));
67 this.ResponseBodyPanel.Controls.Add(this.ResponseBodyRegexCheckBox);
68 this.ResponseBodyPanel.Controls.Add(this.ResponseBodyComboBox);
69 this.ResponseBodyPanel.Controls.Add(this.ResponseBodyCheckBox);
70 this.ResponseBodyPanel.Controls.Add(this.ResponseBodyTextBox);
71 this.ResponseBodyPanel.Location = new System.Drawing.Point(9, 102);
72 this.ResponseBodyPanel.Name = "ResponseBodyPanel";
73 this.ResponseBodyPanel.Size = new System.Drawing.Size(511, 28);
74 this.ResponseBodyPanel.TabIndex = 21;
75 //
76 // ResponseBodyRegexCheckBox
77 //
78 this.ResponseBodyRegexCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
79 this.ResponseBodyRegexCheckBox.AutoSize = true;
80 this.ResponseBodyRegexCheckBox.Location = new System.Drawing.Point(395, 6);
81 this.ResponseBodyRegexCheckBox.Name = "ResponseBodyRegexCheckBox";
82 this.ResponseBodyRegexCheckBox.Size = new System.Drawing.Size(116, 17);
83 this.ResponseBodyRegexCheckBox.TabIndex = 9;
84 this.ResponseBodyRegexCheckBox.Text = "Regular expression";
85 this.ResponseBodyRegexCheckBox.UseVisualStyleBackColor = true;
86 //
87 // ResponseBodyComboBox
88 //
89 this.ResponseBodyComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
90 this.ResponseBodyComboBox.FormattingEnabled = true;
91 this.ResponseBodyComboBox.Items.AddRange(new object[] {
92 "contains",
93 "does not contain",
94 "contains",
95 "does not contain"});
96 this.ResponseBodyComboBox.Location = new System.Drawing.Point(98, 4);
97 this.ResponseBodyComboBox.Name = "ResponseBodyComboBox";
98 this.ResponseBodyComboBox.Size = new System.Drawing.Size(110, 21);
99 this.ResponseBodyComboBox.TabIndex = 8;
100 //
101 // ResponseBodyCheckBox
102 //
103 this.ResponseBodyCheckBox.AutoSize = true;
104 this.ResponseBodyCheckBox.Location = new System.Drawing.Point(0, 6);
105 this.ResponseBodyCheckBox.Name = "ResponseBodyCheckBox";
106 this.ResponseBodyCheckBox.Size = new System.Drawing.Size(100, 17);
107 this.ResponseBodyCheckBox.TabIndex = 4;
108 this.ResponseBodyCheckBox.Text = "Response body";
109 this.ResponseBodyCheckBox.UseVisualStyleBackColor = true;
110 //
111 // ResponseBodyTextBox
112 //
113 this.ResponseBodyTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
114 | System.Windows.Forms.AnchorStyles.Right)));
115 this.ResponseBodyTextBox.Location = new System.Drawing.Point(214, 4);
116 this.ResponseBodyTextBox.Name = "ResponseBodyTextBox";
117 this.ResponseBodyTextBox.Size = new System.Drawing.Size(175, 20);
118 this.ResponseBodyTextBox.TabIndex = 7;
119 //
120 // ResponseLengthPanel
121 //
122 this.ResponseLengthPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
123 | System.Windows.Forms.AnchorStyles.Right)));
124 this.ResponseLengthPanel.Controls.Add(this.ResponseLengthCheckbox);
125 this.ResponseLengthPanel.Controls.Add(this.ResponseLengthMaxTextBox);
126 this.ResponseLengthPanel.Controls.Add(this.ResponseLengthKbLabel);
127 this.ResponseLengthPanel.Controls.Add(this.ResponseLengthMinTextBox);
128 this.ResponseLengthPanel.Controls.Add(this.ResponseLengthAndLabel);
129 this.ResponseLengthPanel.Location = new System.Drawing.Point(9, 75);
130 this.ResponseLengthPanel.Name = "ResponseLengthPanel";
131 this.ResponseLengthPanel.Size = new System.Drawing.Size(511, 28);
132 this.ResponseLengthPanel.TabIndex = 20;
133 //
134 // ResponseLengthCheckbox
135 //
136 this.ResponseLengthCheckbox.AutoSize = true;
137 this.ResponseLengthCheckbox.Location = new System.Drawing.Point(0, 6);
138 this.ResponseLengthCheckbox.Name = "ResponseLengthCheckbox";
139 this.ResponseLengthCheckbox.Size = new System.Drawing.Size(150, 17);
140 this.ResponseLengthCheckbox.TabIndex = 5;
141 this.ResponseLengthCheckbox.Text = "Response length between";
142 this.ResponseLengthCheckbox.UseVisualStyleBackColor = true;
143 //
144 // ResponseLengthMaxTextBox
145 //
146 this.ResponseLengthMaxTextBox.Location = new System.Drawing.Point(228, 4);
147 this.ResponseLengthMaxTextBox.Name = "ResponseLengthMaxTextBox";
148 this.ResponseLengthMaxTextBox.Size = new System.Drawing.Size(44, 20);
149 this.ResponseLengthMaxTextBox.TabIndex = 8;
150 this.ResponseLengthMaxTextBox.Text = "200";
151 //
152 // ResponseLengthKbLabel
153 //
154 this.ResponseLengthKbLabel.AutoSize = true;
155 this.ResponseLengthKbLabel.Location = new System.Drawing.Point(278, 7);
156 this.ResponseLengthKbLabel.Name = "ResponseLengthKbLabel";
157 this.ResponseLengthKbLabel.Size = new System.Drawing.Size(21, 13);
158 this.ResponseLengthKbLabel.TabIndex = 11;
159 this.ResponseLengthKbLabel.Text = "KB";
160 //
161 // ResponseLengthMinTextBox
162 //
163 this.ResponseLengthMinTextBox.Location = new System.Drawing.Point(151, 4);
164 this.ResponseLengthMinTextBox.Name = "ResponseLengthMinTextBox";
165 this.ResponseLengthMinTextBox.Size = new System.Drawing.Size(44, 20);
166 this.ResponseLengthMinTextBox.TabIndex = 9;
167 this.ResponseLengthMinTextBox.Text = "100";
168 //
169 // ResponseLengthAndLabel
170 //
171 this.ResponseLengthAndLabel.AutoSize = true;
172 this.ResponseLengthAndLabel.Location = new System.Drawing.Point(200, 7);
173 this.ResponseLengthAndLabel.Name = "ResponseLengthAndLabel";
174 this.ResponseLengthAndLabel.Size = new System.Drawing.Size(25, 13);
175 this.ResponseLengthAndLabel.TabIndex = 10;
176 this.ResponseLengthAndLabel.Text = "and";
177 //
178 // ResponseCodePanel
179 //
180 this.ResponseCodePanel.Controls.Add(this.ResponseCodeCheckBox);
181 this.ResponseCodePanel.Controls.Add(this.ResponseCodeTextBox);
182 this.ResponseCodePanel.Location = new System.Drawing.Point(9, 48);
183 this.ResponseCodePanel.Name = "ResponseCodePanel";
184 this.ResponseCodePanel.Size = new System.Drawing.Size(511, 28);
185 this.ResponseCodePanel.TabIndex = 19;
186 //
187 // ResponseCodeCheckBox
188 //
189 this.ResponseCodeCheckBox.AutoSize = true;
190 this.ResponseCodeCheckBox.Location = new System.Drawing.Point(0, 6);
191 this.ResponseCodeCheckBox.Name = "ResponseCodeCheckBox";
192 this.ResponseCodeCheckBox.Size = new System.Drawing.Size(135, 17);
193 this.ResponseCodeCheckBox.TabIndex = 4;
194 this.ResponseCodeCheckBox.Text = "Response code equals";
195 this.ResponseCodeCheckBox.UseVisualStyleBackColor = true;
196 //
197 // ResponseCodeTextBox
198 //
199 this.ResponseCodeTextBox.Location = new System.Drawing.Point(136, 4);
200 this.ResponseCodeTextBox.Name = "ResponseCodeTextBox";
201 this.ResponseCodeTextBox.Size = new System.Drawing.Size(39, 20);
202 this.ResponseCodeTextBox.TabIndex = 7;
203 this.ResponseCodeTextBox.Text = "200";
204 //
205 // HttpUrlLabel
206 //
207 this.HttpUrlLabel.AutoSize = true;
208 this.HttpUrlLabel.Location = new System.Drawing.Point(6, 25);
209 this.HttpUrlLabel.Name = "HttpUrlLabel";
210 this.HttpUrlLabel.Size = new System.Drawing.Size(32, 13);
211 this.HttpUrlLabel.TabIndex = 18;
212 this.HttpUrlLabel.Text = "URL:";
213 //
214 // UrlTextBox
215 //
216 this.UrlTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
217 | System.Windows.Forms.AnchorStyles.Right)));
218 this.UrlTextBox.Location = new System.Drawing.Point(44, 22);
219 this.UrlTextBox.Name = "UrlTextBox";
220 this.UrlTextBox.Size = new System.Drawing.Size(476, 20);
221 this.UrlTextBox.TabIndex = 17;
222 //
223 // HttpCheckControl
224 //
225 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
226 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
227 this.Name = "HttpCheckControl";
228 this.Size = new System.Drawing.Size(526, 142);
229 this.CheckGroupBox.ResumeLayout(false);
230 this.CheckGroupBox.PerformLayout();
231 this.ResponseBodyPanel.ResumeLayout(false);
232 this.ResponseBodyPanel.PerformLayout();
233 this.ResponseLengthPanel.ResumeLayout(false);
234 this.ResponseLengthPanel.PerformLayout();
235 this.ResponseCodePanel.ResumeLayout(false);
236 this.ResponseCodePanel.PerformLayout();
237 this.ResumeLayout(false);
238
239 }
240
241 #endregion
242
243 private System.Windows.Forms.Panel ResponseBodyPanel;
244 private System.Windows.Forms.CheckBox ResponseBodyRegexCheckBox;
245 private MatchComboBox ResponseBodyComboBox;
246 private System.Windows.Forms.CheckBox ResponseBodyCheckBox;
247 private System.Windows.Forms.TextBox ResponseBodyTextBox;
248 private System.Windows.Forms.Panel ResponseLengthPanel;
249 private System.Windows.Forms.CheckBox ResponseLengthCheckbox;
250 private System.Windows.Forms.TextBox ResponseLengthMaxTextBox;
251 private System.Windows.Forms.Label ResponseLengthKbLabel;
252 private System.Windows.Forms.TextBox ResponseLengthMinTextBox;
253 private System.Windows.Forms.Label ResponseLengthAndLabel;
254 private System.Windows.Forms.Panel ResponseCodePanel;
255 private System.Windows.Forms.CheckBox ResponseCodeCheckBox;
256 private System.Windows.Forms.TextBox ResponseCodeTextBox;
257 private System.Windows.Forms.Label HttpUrlLabel;
258 private System.Windows.Forms.TextBox UrlTextBox;
259 }
260 }