-
Notifications
You must be signed in to change notification settings - Fork 2
/
LocalConfigs.cs
323 lines (317 loc) · 11.6 KB
/
LocalConfigs.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
using System;
using System.Configuration;
using static System.Configuration.ConfigurationManager;
namespace PMPlatform.JT808TestTool
{
public class LocalConfigs
{
public static bool EquipmentPaging
{
get => (bool) "T"?.Equals(AppSettings["EquipmentPaging"]);
//set => AppSettings["EquipmentPaging"] = value ? "T" : "F";
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["EquipmentPaging"].Value = value ? "T" : "F";
coc.Save();
}
}
public static bool DataDisplayShowLocationResponse
{
get => (bool)"T"?.Equals(AppSettings["DataDisplay1"]);
// set => AppSettings["DataDisplay1"] = value ? "T" : "F";
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["DataDisplay1"].Value = value ? "T" : "F";
coc.Save();
}
}
public static bool DataDisplayShowTerminalGeneralResponse
{
get => (bool)"T"?.Equals(AppSettings["DataDisplay2"]);
// set => AppSettings["DataDisplay2"] = value ? "T" : "F";
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["DataDisplay2"].Value = value ? "T" : "F";
coc.Save();
}
}
public static bool DataDisplayShowTerminalParaSelectResponse
{
get => (bool)"T"?.Equals(AppSettings["DataDisplay3"]);
// set => AppSettings["DataDisplay3"] = value ? "T" : "F";
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["DataDisplay3"].Value = value ? "T" : "F";
coc.Save();
}
}
public static bool DataDisplayShowTerminalLocationSelectResponse
{
get => (bool)"T"?.Equals(AppSettings["DataDisplay4"]);
// set => AppSettings["DataDisplay4"] = value ? "T" : "F";
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["DataDisplay4"].Value = value ? "T" : "F";
coc.Save();
}
}
public static bool DataDisplayShowTerminalOthersResponse
{
get => (bool)"T"?.Equals(AppSettings["DataDisplay5"]);
// set => AppSettings["DataDisplay5"] = value ? "T" : "F";
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["DataDisplay5"].Value = value ? "T" : "F";
coc.Save();
}
}
public static int EquipmentPageSize
{
get => Convert.ToInt32(AppSettings["EquipmentPageSize"]);
// set => AppSettings["EquipmentPageSize"] = value.ToString();
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["EquipmentPageSize"].Value = value.ToString();
coc.Save();
}
}
public static bool DataDisplayIsSerialization
{
get => (bool)"T"?.Equals(AppSettings["DataDisplayIsSerialization"]);
// set => AppSettings["DataDisplayIsSerialization"] = value ? "T" : "F";
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["DataDisplayIsSerialization"].Value = value ? "T" : "F";
coc.Save();
}
}
public static string ParaSet0X0001
{
get => AppSettings["ParaSet0X0001"];
// set => AppSettings["ParaSet0X0001"] = value;
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["ParaSet0X0001"].Value = value;
coc.Save();
}
}
public static string ParaSet0X0010
{
get => AppSettings["ParaSet0X0010"];
// set => AppSettings["ParaSet0X0010"] = value;
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["ParaSet0X0010"].Value = value;
coc.Save();
}
}
public static string ParaSet0X0013
{
get => AppSettings["ParaSet0X0013"];
// set => AppSettings["ParaSet0X0013"] = value;
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["ParaSet0X0013"].Value = value;
coc.Save();
}
}
public static string ParaSet0X0017
{
get => AppSettings["ParaSet0X0017"];
// set => AppSettings["ParaSet0X0017"] = value;
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["ParaSet0X0017"].Value = value;
coc.Save();
}
}
public static string ParaSet0X0018
{
get => AppSettings["ParaSet0X0018"];
// set => AppSettings["ParaSet0X0018"] = value;
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["ParaSet0X0018"].Value = value;
coc.Save();
}
}
public static string ParaSet0X0020
{
get => AppSettings["ParaSet0X0020"];
// set => AppSettings["ParaSet0X0020"] = value;
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["ParaSet0X0020"].Value = value;
coc.Save();
}
}
public static string ParaSet0X0027
{
get => AppSettings["ParaSet0X0027"];
// set => AppSettings["ParaSet0X0027"] = value;
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["ParaSet0X0027"].Value = value;
coc.Save();
}
}
public static string ParaSet0X0029
{
get => AppSettings["ParaSet0X0029"];
// set => AppSettings["ParaSet0X0029"] = value;
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["ParaSet0X0029"].Value = value;
coc.Save();
}
}
public static string ParaSet0X0030
{
get => AppSettings["ParaSet0X0030"];
// set => AppSettings["ParaSet0X0030"] = value;
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["ParaSet0X0030"].Value = value;
coc.Save();
}
}
public static string ParaSet0X0055
{
get => AppSettings["ParaSet0X0055"];
// set => AppSettings["ParaSet0X0055"] = value;
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["ParaSet0X0055"].Value = value;
coc.Save();
}
}
public static string ParaSet0X0056
{
get => AppSettings["ParaSet0X0056"];
// set => AppSettings["ParaSet0X0056"] = value;
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["ParaSet0X0056"].Value = value;
coc.Save();
}
}
public static string ParaSet0X0080
{
get => AppSettings["ParaSet0X0080"];
// set => AppSettings["ParaSet0X0080"] = value;
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["ParaSet0X0080"].Value = value;
coc.Save();
}
}
public static string ParaSet0X0081
{
get => AppSettings["ParaSet0X0081"];
// set => AppSettings["ParaSet0X0081"] = value;
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["ParaSet0X0081"].Value = value;
coc.Save();
}
}
public static string ParaSet0X0082
{
get => AppSettings["ParaSet0X0082"];
// set => AppSettings["ParaSet0X0082"] = value;
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["ParaSet0X0082"].Value = value;
coc.Save();
}
}
public static string ParaSet0X0083
{
get => AppSettings["ParaSet0X0083"];
// set => AppSettings["ParaSet0X0083"] = value;
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["ParaSet0X0083"].Value = value;
coc.Save();
}
}
public static string ParaSet0X0084
{
get => AppSettings["ParaSet0X0084"];
// set => AppSettings["ParaSet0X0084"] = value;
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["ParaSet0X0084"].Value = value;
coc.Save();
}
}
public static string ParaSet0X1018
{
get => AppSettings["ParaSet0X1018"];
// set => AppSettings["ParaSet0X1018"] = value;
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["ParaSet0X1018"].Value = value;
coc.Save();
}
}
public static string KafkaServer
{
get => AppSettings["KafkaServer"];
// set => AppSettings["KafkaServer"] = value;
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["KafkaServer"].Value = value;
coc.Save();
}
}
public static string DataDisplayMaxMessageCount
{
get => AppSettings["DataDisplayMaxMessageCount"];
// set => AppSettings["DataDisplayMaxMessageCount"] = value;
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["DataDisplayMaxMessageCount"].Value = value;
coc.Save();
}
}
public static string DataDisplayShowMessageCount
{
get => AppSettings["DataDisplayShowMessageCount"];
// set => AppSettings["DataDisplayShowMessageCount"] = value;
set
{
var coc = OpenExeConfiguration(ConfigurationUserLevel.None);
coc.AppSettings.Settings["DataDisplayShowMessageCount"].Value = value;
coc.Save();
}
}
}
}