jinxin
2025-06-04 b10bf189ab080730b605754b6035da26b17f5d08
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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Topshelf</name>
    </assembly>
    <members>
        <member name="T:Topshelf.Caching.Cache`2">
            <summary>
            A cache implementation that extends the capability of most dictionary style classes to
            have a more complete set of methods commonly used in a dictionary scenario.
            </summary>
            <typeparam name="TKey">The key type of the cache</typeparam>
            <typeparam name="TValue">The value type of the cache</typeparam>
        </member>
        <member name="P:Topshelf.Caching.Cache`2.MissingValueProvider">
            <summary>
            Sets the missing value provider used by the cache to create requested values that do not exist in the cache
            </summary>
        </member>
        <member name="P:Topshelf.Caching.Cache`2.ValueAddedCallback">
            <summary>
            Sets the callback that is called when a new value is added to the cache
            </summary>
        </member>
        <member name="P:Topshelf.Caching.Cache`2.ValueRemovedCallback">
            <summary>
            Sets the callback that is called when a value is removed or replaced from the cache
            </summary>
        </member>
        <member name="P:Topshelf.Caching.Cache`2.DuplicateValueAdded">
            <summary>
            Sets the callback that is called when a duplicate value is added to the cache
            </summary>
        </member>
        <member name="P:Topshelf.Caching.Cache`2.KeySelector">
            <summary>
            Specifies a selector that returns the key from a value which is used when a value is added to the cache
            </summary>
        </member>
        <member name="P:Topshelf.Caching.Cache`2.Item(`0)">
            <summary>
            References a value in the cache, returning a newly created or existing value for the specified key, and
            adding a new or replacing an existing value in the cache
            </summary>
            <param name="key">The key references the value</param>
            <returns>The value from the cache</returns>
        </member>
        <member name="M:Topshelf.Caching.Cache`2.Get(`0)">
            <summary>
            Get the value for the specified key
            </summary>
            <param name="key">The key referencing the value in the cache</param>
            <returns>The matching value if the key exists in the cache, otherwise an exception is thrown</returns>
        </member>
        <member name="M:Topshelf.Caching.Cache`2.Get(`0,Topshelf.Caching.MissingValueProvider{`0,`1})">
            <summary>
            Get the value for the specified key, overriding the default missing value provider
            </summary>
            <param name="key">The key referencing the value in the cache</param>
            <param name="missingValueProvider">An overloaded missing value provider to create the value if it is not found in the cache</param>
            <returns>The matching value if the key exists in the cache, otherwise an exception is thrown</returns>
        </member>
        <member name="M:Topshelf.Caching.Cache`2.GetValue(`0,`1)">
            <summary>
            Get a value for the specified key, if not found returns the specified default value
            </summary>
            <param name="key">The key referencing the value in the cache</param>
            <param name="defaultValue">The default value to return if the key is not found in the cache</param>
            <returns>The matching value if it exists in the cache, otherwise the default value</returns>
        </member>
        <member name="M:Topshelf.Caching.Cache`2.GetValue(`0,System.Func{`1})">
            <summary>
            Get a value for the specified key, if not found returns the specified default value
            </summary>
            <param name="key">The key referencing the value in the cache</param>
            <param name="defaultValueProvider">The default value to return if the key is not found in the cache</param>
            <returns>The matching value if it exists in the cache, otherwise the default value</returns>
        </member>
        <member name="M:Topshelf.Caching.Cache`2.TryGetValue(`0,`1@)">
            <summary>
            Gets a value for the specified key if it exists
            </summary>
            <param name="key">The key referencing the value in the cache</param>
            <param name="value">The value if it exists in the cache, otherwise the default value</param>
            <returns>True if the item was in the cache, otherwise false</returns>
        </member>
        <member name="M:Topshelf.Caching.Cache`2.Add(`0,`1)">
            <summary>
            Adds a value to the cache using the specified key. If the key already exists in the cache, an exception is thrown.
            </summary>
            <param name="key">The key referencing the value</param>
            <param name="value">The value</param>
        </member>
        <member name="M:Topshelf.Caching.Cache`2.AddValue(`1)">
            <summary>
            Adds a value to the cache using the KeySelector to extract the key from the value. If the key already exists
            in the cache, an exception is thrown.
            </summary>
            <param name="value">The value</param>
        </member>
        <member name="M:Topshelf.Caching.Cache`2.Remove(`0)">
            <summary>
            Remove an existing value from the cache
            </summary>
            <param name="key">The key referencing the value</param>
        </member>
        <member name="M:Topshelf.Caching.Cache`2.RemoveValue(`1)">
            <summary>
            Remove an existing value from the cache, using the KeySelector to extract the key to find the value
            </summary>
            <param name="value">The value to remove</param>
        </member>
        <member name="M:Topshelf.Caching.Cache`2.Clear">
            <summary>
            Removes all items from the cache
            </summary>
        </member>
        <member name="M:Topshelf.Caching.Cache`2.Fill(System.Collections.Generic.IEnumerable{`1})">
            <summary>
            Fills the cache from a list of values, using the KeySelector to extract the key for each value.
            </summary>
            <param name="values"></param>
        </member>
        <member name="M:Topshelf.Caching.Cache`2.WithValue(`0,System.Action{`1})">
            <summary>
            Calls the callback with the value matching the specified key
            </summary>
            <param name="key">The key referencing the value</param>
            <param name="callback">The callback to call</param>
            <returns>True if the value exists and the callback was called</returns>
        </member>
        <member name="M:Topshelf.Caching.Cache`2.WithValue``1(`0,System.Func{`1,``0},``0)">
            <summary>
            Calls the function with the value matching the specified key, returning the result of that function
            </summary>
            <typeparam name="TResult">The result type of the function</typeparam>
            <param name="key">The key references the value</param>
            <param name="callback">The function to call</param>
            <param name="defaultValue">The default return value if the item does not exist in the cache</param>
            <returns>The return value of the function, or the defaultValue specified if the item does not exist in the cache</returns>
        </member>
        <member name="M:Topshelf.Caching.Cache`2.WithValue``1(`0,System.Func{`1,``0},System.Func{`0,``0})">
            <summary>
            Calls the function with the value matching the specified key, returning the result of that function
            </summary>
            <typeparam name="TResult">The result type of the function</typeparam>
            <param name="key">The key references the value</param>
            <param name="callback">The function to call</param>
            <param name="defaultValue">The default return value if the item does not exist in the cache</param>
            <returns>The return value of the function, or the defaultValue specified if the item does not exist in the cache</returns>
        </member>
        <member name="M:Topshelf.Caching.GenericTypeCache`1.#ctor(System.Type)">
            <summary>
            Constructs a cache for the specified generic type
            </summary>
            <param name="genericType">The generic type to close</param>
        </member>
        <member name="M:Topshelf.Caching.GenericTypeCache`1.#ctor(System.Type,Topshelf.Caching.MissingValueProvider{System.Type,`0})">
            <summary>
            Constructs a cache for the specified generic type.
            </summary>
            <param name="genericType">The generic type to close</param>
            <param name="missingValueProvider">The implementation provider, which must close the generic type with the passed type</param>
        </member>
        <member name="T:Topshelf.Caching.ReadCache`2">
            <summary>
            A read-only view of a cache. Methods that are able to modify the cache contents are not
            available in this reduced interface. Methods on this interface will NOT invoke a missing
            item provider.
            </summary>
            <typeparam name="TKey"></typeparam>
            <typeparam name="TValue"></typeparam>
        </member>
        <member name="P:Topshelf.Caching.ReadCache`2.Count">
            <summary>
            The number of items in the cache
            </summary>
        </member>
        <member name="M:Topshelf.Caching.ReadCache`2.Has(`0)">
            <summary>
            Checks if the key exists in the cache
            </summary>
            <param name="key">The key to check</param>
            <returns>True if the key exists, otherwise false</returns>
        </member>
        <member name="M:Topshelf.Caching.ReadCache`2.HasValue(`1)">
            <summary>
            Checks if a value exists in the cache
            </summary>
            <param name="value">The value to check</param>
            <returns>True if the value exists, otherwise false</returns>
        </member>
        <member name="M:Topshelf.Caching.ReadCache`2.Each(System.Action{`1})">
            <summary>
            Calls the specified callback with each value in the cache
            </summary>
            <param name="callback">A callback that accepts the value for each item in the cache</param>
        </member>
        <member name="M:Topshelf.Caching.ReadCache`2.Each(System.Action{`0,`1})">
            <summary>
            Calls the specified callback with each item in the cache
            </summary>
            <param name="callback">A callback that accepts the key and value for each item in the cache</param>
        </member>
        <member name="M:Topshelf.Caching.ReadCache`2.Exists(System.Predicate{`1})">
            <summary>
            Uses a predicate to scan the cache for a matching value
            </summary>
            <param name="predicate">The predicate to run against each value</param>
            <returns>True if a matching value exists, otherwise false</returns>
        </member>
        <member name="M:Topshelf.Caching.ReadCache`2.Find(System.Predicate{`1},`1@)">
            <summary>
            Uses a predicate to scan the cache for a matching value
            </summary>
            <param name="predicate">The predicate to run against each value</param>
            <param name="result">The matching value</param>
            <returns>True if a matching value was found, otherwise false</returns>
        </member>
        <member name="M:Topshelf.Caching.ReadCache`2.GetAllKeys">
            <summary>
            Gets all keys that are stored in the cache
            </summary>
            <returns>An array of every key in the dictionary</returns>
        </member>
        <member name="M:Topshelf.Caching.ReadCache`2.GetAll">
            <summary>
            Gets all values that are stored in the cache
            </summary>
            <returns>An array of every value in the dictionary</returns>
        </member>
        <member name="T:Topshelf.Builders.HostBuilder">
            <summary>
            Using the service configuration, the host builder will create the host
            that will be ran by the service console.
            </summary>
        </member>
        <member name="T:Topshelf.CommandLineParser.CommandLine">
            <summary>
              Tools for parsing the command line
            </summary>
        </member>
        <member name="M:Topshelf.CommandLineParser.CommandLine.GetUnparsedCommandLine">
            <summary>
              Gets the command line from the Environment.CommandLine, removing the application name if present
            </summary>
            <returns> The complete, unparsed command line that was specified when the program was executed </returns>
        </member>
        <member name="M:Topshelf.CommandLineParser.CommandLine.Parse(System.String)">
            <summary>
              Parses the command line
            </summary>
            <param name="commandLine"> The command line to parse </param>
            <returns> The command line elements that were found </returns>
        </member>
        <member name="M:Topshelf.CommandLineParser.CommandLine.Parse``1(System.Action{Topshelf.CommandLineParser.ICommandLineElementParser{``0}},System.String)">
            <summary>
              Parses the command line and matches any specified patterns
            </summary>
            <typeparam name="T"> The output type of the parser </typeparam>
            <param name="commandLine"> The command line text </param>
            <param name="initializer"> Used by the caller to add patterns and object generators </param>
            <returns> The elements that were found on the command line </returns>
        </member>
        <member name="T:Topshelf.CommandLineParser.ICommandLineElementParser`1">
            <summary>
              Used to configure the command line element parser
            </summary>
            <typeparam name="TResult"> The type of object returned as a result of the parse </typeparam>
        </member>
        <member name="M:Topshelf.CommandLineParser.ICommandLineElementParser`1.Add(Topshelf.CommandLineParser.Parser{System.Collections.Generic.IEnumerable{Topshelf.CommandLineParser.ICommandLineElement},`0})">
            <summary>
              Adds a new pattern to the parser
            </summary>
            <param name="parser"> The pattern to match and return the resulting object </param>
        </member>
        <member name="T:Topshelf.Configurators.ValidateResult">
            <summary>
            Reports information about the configuration before configuring
            so that corrections can be made without allocating resources, etc.
            </summary>
        </member>
        <member name="P:Topshelf.Configurators.ValidateResult.Disposition">
            <summary>
            The disposition of the result, any Failure items will prevent
            the configuration from completing.
            </summary>
        </member>
        <member name="P:Topshelf.Configurators.ValidateResult.Message">
            <summary>
            The message associated with the result
            </summary>
        </member>
        <member name="P:Topshelf.Configurators.ValidateResult.Key">
            <summary>
            The key associated with the result (chained if configurators are nested)
            </summary>
        </member>
        <member name="P:Topshelf.Configurators.ValidateResult.Value">
            <summary>
            The value associated with the result
            </summary>
        </member>
        <member name="T:Topshelf.Constants.KnownServiceNames">
            <summary>
            A selection of commonly-used Windows services.
            </summary>
        </member>
        <member name="P:Topshelf.Constants.KnownServiceNames.Msmq">
            <summary>
            The Microsoft Message Queue service.
            </summary>
        </member>
        <member name="P:Topshelf.Constants.KnownServiceNames.SqlServer">
            <summary>
            The Microsoft SQL Server service.
            </summary>
        </member>
        <member name="P:Topshelf.Constants.KnownServiceNames.IIS">
            <summary>
            The Internet Information Server service.
            </summary>
        </member>
        <member name="P:Topshelf.Constants.KnownServiceNames.EventLog">
            <summary>
            The Event Log service.
            </summary>
        </member>
        <member name="M:Topshelf.HelpHostConfiguratorExtensions.SetHelpTextPrefix(Topshelf.HostConfigurators.HostConfigurator,System.String)">
            <summary>
            Sets additional text to be displayed before the built-in help text is displayed
            </summary>
            <param name="hostConfigurator"></param>
            <param name="text"></param>
        </member>
        <member name="M:Topshelf.HelpHostConfiguratorExtensions.LoadHelpTextPrefix(Topshelf.HostConfigurators.HostConfigurator,System.Reflection.Assembly,System.String)">
            <summary>
            Specifies a text resource to be loaded and displayed before the built-in system help text is displayed
            </summary>
            <param name="hostConfigurator"></param>
            <param name="assembly">The assembly containing the text resource</param>
            <param name="resourceName">The name of the embedded resource</param>
        </member>
        <member name="T:Topshelf.HostConfigurators.DependencyHostConfigurator">
            <summary>
            Adds a dependency to the InstallBuilder (ignored otherwise)
            </summary>
        </member>
        <member name="T:Topshelf.HostConfigurators.HostBuilderConfigurator">
            <summary>
            Can configure/replace the input <see cref="T:Topshelf.Builders.HostBuilder"/>, returning the original
            or a new <see cref="T:Topshelf.Builders.HostBuilder"/>.
            </summary>
        </member>
        <member name="M:Topshelf.HostConfigurators.HostBuilderConfigurator.Configure(Topshelf.Builders.HostBuilder)">
            <summary>
            Configures the host builder.
            </summary>
            <param name="builder">The host builder.</param>
            <returns>The configured host builder.</returns>
        </member>
        <member name="M:Topshelf.HostConfigurators.HostConfigurator.SetDisplayName(System.String)">
            <summary>
              Specifies the name of the service as it should be displayed in the service control manager
            </summary>
            <param name="name"> </param>
        </member>
        <member name="M:Topshelf.HostConfigurators.HostConfigurator.SetServiceName(System.String)">
            <summary>
              Specifies the name of the service as it is registered in the service control manager
            </summary>
            <param name="name"> </param>
        </member>
        <member name="M:Topshelf.HostConfigurators.HostConfigurator.SetDescription(System.String)">
            <summary>
              Specifies the description of the service that is displayed in the service control manager
            </summary>
            <param name="description"> </param>
        </member>
        <member name="M:Topshelf.HostConfigurators.HostConfigurator.SetInstanceName(System.String)">
            <summary>
              Specifies the service instance name that should be used when the service is registered
            </summary>
            <param name="instanceName"> </param>
        </member>
        <member name="M:Topshelf.HostConfigurators.HostConfigurator.SetStartTimeout(System.TimeSpan)">
            <summary>
            Sets the amount of time to wait for the service to start before timing out. Default is 10 seconds.
            </summary>
            <param name="startTimeOut"></param>
        </member>
        <member name="M:Topshelf.HostConfigurators.HostConfigurator.SetStopTimeout(System.TimeSpan)">
            <summary>
            Sets the amount of time to wait for the service to stop before timing out. Default is 10 seconds.
            </summary>
            <param name="stopTimeOut"></param>
        </member>
        <member name="M:Topshelf.HostConfigurators.HostConfigurator.EnablePauseAndContinue">
            <summary>
            Enable pause and continue support for the service (default is disabled)
            </summary>
        </member>
        <member name="M:Topshelf.HostConfigurators.HostConfigurator.EnableShutdown">
            <summary>
            Enable support for service shutdown (signaled by the host OS)
            </summary>
        </member>
        <member name="M:Topshelf.HostConfigurators.HostConfigurator.EnableSessionChanged">
            <summary>
            Enables support for the session changed event
            </summary>
        </member>
        <member name="M:Topshelf.HostConfigurators.HostConfigurator.EnablePowerEvents">
            <summary>
            Enables support for power events (signaled by the host OS)
            </summary>
        </member>
        <member name="M:Topshelf.HostConfigurators.HostConfigurator.EnableHandleCtrlBreak">
            <summary>
            Enables support for gracefully handling Ctrl+Break signals
            </summary>
        </member>
        <member name="M:Topshelf.HostConfigurators.HostConfigurator.UseHostBuilder(Topshelf.HostConfigurators.HostBuilderFactory)">
            <summary>
              Specifies the builder factory to use when the service is invoked
            </summary>
            <param name="hostBuilderFactory"> </param>
        </member>
        <member name="M:Topshelf.HostConfigurators.HostConfigurator.UseServiceBuilder(Topshelf.HostConfigurators.ServiceBuilderFactory)">
            <summary>
              Sets the service builder to use for creating the service
            </summary>
            <param name="serviceBuilderFactory"> </param>
        </member>
        <member name="M:Topshelf.HostConfigurators.HostConfigurator.UseEnvironmentBuilder(Topshelf.HostConfigurators.EnvironmentBuilderFactory)">
            <summary>
              Sets the environment builder to use for creating the service (defaults to Windows)
            </summary>
            <param name="environmentBuilderFactory"> </param>
        </member>
        <member name="M:Topshelf.HostConfigurators.HostConfigurator.AddConfigurator(Topshelf.HostConfigurators.HostBuilderConfigurator)">
            <summary>
              Adds a a configurator for the host builder to the configurator
            </summary>
            <param name="configurator"> </param>
        </member>
        <member name="M:Topshelf.HostConfigurators.HostConfigurator.ApplyCommandLine">
            <summary>
            Parses the command line options and applies them to the host configurator
            </summary>
        </member>
        <member name="M:Topshelf.HostConfigurators.HostConfigurator.ApplyCommandLine(System.String)">
            <summary>
            Parses the command line options from the specified command line and applies them to the host configurator
            </summary>
            <param name="commandLine"></param>
        </member>
        <member name="M:Topshelf.HostConfigurators.HostConfigurator.AddCommandLineSwitch(System.String,System.Action{System.Boolean})">
            <summary>
            Adds a command line switch (--name) that can be either true or false. Switches are CASE SeNsITiVe
            </summary>
            <param name="name">The name of the switch, as it will appear on the command line</param>
            <param name="callback"></param>
        </member>
        <member name="M:Topshelf.HostConfigurators.HostConfigurator.AddCommandLineDefinition(System.String,System.Action{System.String})">
            <summary>
            Adds a command line definition (-name:value) that can be specified. the name is case sensitive. If the 
            definition 
            </summary>
            <param name="name"></param>
            <param name="callback"></param>
        </member>
        <member name="M:Topshelf.HostConfigurators.HostConfigurator.OnException(System.Action{System.Exception})">
            <summary>
            Specifies a callback to be run when Topshelf encounters an exception while starting, running
            or stopping. This callback does not replace Topshelf's default handling of any exceptions, and 
            is intended to allow for local cleanup, logging, etc. This is not required, and is only invoked
            if a callback is provided.
            </summary>
            <param name="callback">The action to run when an exception occurs.</param>
        </member>
        <member name="P:Topshelf.HostConfigurators.HostConfigurator.UnhandledExceptionPolicy">
            <summary>
            The policy that will be used when Topself detects an UnhandledException in the
            application. The default policy is to log an error and to stop the service.
            </summary>
        </member>
        <member name="T:Topshelf.HostConfigurators.ServiceRecoveryHostConfigurator">
            <summary>
            Implements a service recovery configurator and host builder configurator.
            </summary>
            <seealso cref="T:Topshelf.ServiceRecoveryConfigurator" />
            <seealso cref="T:Topshelf.HostConfigurators.HostBuilderConfigurator" />
        </member>
        <member name="M:Topshelf.HostConfigurators.ServiceRecoveryHostConfigurator.Configure(Topshelf.Builders.HostBuilder)">
            <summary>
            Configures the host builder.
            </summary>
            <param name="builder">The host builder.</param>
            <returns>The configured host builder.</returns>
            <exception cref="T:System.ArgumentNullException">builder</exception>
        </member>
        <member name="M:Topshelf.HostConfigurators.ServiceRecoveryHostConfigurator.RestartService(System.TimeSpan)">
            <summary>
            Adds a restart service recovery action with the specified delay.
            </summary>
            <param name="delay">The delay.</param>
            <returns>The service recovery configurator.</returns>
        </member>
        <member name="M:Topshelf.HostConfigurators.ServiceRecoveryHostConfigurator.RestartService(System.Int32)">
            <summary>
            Adds a restart service recovery action with the specified delay in minutes.
            </summary>
            <param name="delayInMinutes">The delay in minutes.</param>
            <returns>The service recovery configurator.</returns>
        </member>
        <member name="M:Topshelf.HostConfigurators.ServiceRecoveryHostConfigurator.RestartComputer(System.TimeSpan,System.String)">
            <summary>
            Adds a restart computer recovery action with the specified delay.
            </summary>
            <param name="delay">The delay.</param>
            <param name="message">The message.</param>
            <returns>ServiceRecoveryConfigurator.</returns>
        </member>
        <member name="M:Topshelf.HostConfigurators.ServiceRecoveryHostConfigurator.RestartComputer(System.Int32,System.String)">
            <summary>
            Adds a restart computer recovery action with the specified delay in minutes.
            </summary>
            <param name="delayInMinutes">The delay in minutes.</param>
            <param name="message">The message.</param>
            <returns>The service recovery configurator.</returns>
        </member>
        <member name="M:Topshelf.HostConfigurators.ServiceRecoveryHostConfigurator.RunProgram(System.TimeSpan,System.String)">
            <summary>
            Adds a run program recovery action with the specified delay.
            </summary>
            <param name="delay">The delay.</param>
            <param name="command">The command to run.</param>
            <returns>The service recovery configurator.</returns>
        </member>
        <member name="M:Topshelf.HostConfigurators.ServiceRecoveryHostConfigurator.RunProgram(System.Int32,System.String)">
            <summary>
            Adds a run program recovery action with the specified delay in minutes.
            </summary>
            <param name="delayInMinutes">The delay in minutes.</param>
            <param name="command">The command.</param>
            <returns>The service recovery configurator.</returns>
        </member>
        <member name="M:Topshelf.HostConfigurators.ServiceRecoveryHostConfigurator.TakeNoAction">
            <summary>
            Adds a take no action recovery action.
            </summary>
            <returns>The service recovery configurator.</returns>
        </member>
        <member name="M:Topshelf.HostConfigurators.ServiceRecoveryHostConfigurator.SetResetPeriod(System.Int32)">
            <summary>
            Sets the recovery reset period in days.
            </summary>
            <param name="days">The reset period in days.</param>
        </member>
        <member name="M:Topshelf.HostConfigurators.ServiceRecoveryHostConfigurator.OnCrashOnly">
            <summary>
            Specifies that the recovery actions should only be taken on a service crash. If the service exits
            with a non-zero exit code, it will not be restarted.
            </summary>
        </member>
        <member name="T:Topshelf.Options.DependencyOption">
            <summary>
            Represents an option to set a service dependency.
            </summary>
            <seealso cref="T:Topshelf.Options.Option" />
        </member>
        <member name="F:Topshelf.Options.DependencyOption.dependencyName">
            <summary>
            The dependency name
            </summary>
        </member>
        <member name="M:Topshelf.Options.DependencyOption.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Topshelf.Options.DependencyOption"/> class.
            </summary>
            <param name="dependencyName">Name of the dependency.</param>
        </member>
        <member name="M:Topshelf.Options.DependencyOption.ApplyTo(Topshelf.HostConfigurators.HostConfigurator)">
            <summary>
            Applies the option to the specified host configurator.
            </summary>
            <param name="configurator">The host configurator.</param>
        </member>
        <member name="T:Topshelf.Options.ServiceRecoveryOption">
            <summary>
            Represents an option to set a service recovery options.
            </summary>
            <seealso cref="T:Topshelf.Options.Option" />
        </member>
        <member name="M:Topshelf.Options.ServiceRecoveryOption.#ctor(Topshelf.Runtime.Windows.ServiceRecoveryOptions)">
            <summary>
            Initializes a new instance of the <see cref="T:Topshelf.Options.ServiceRecoveryOption"/> class.
            </summary>
            <param name="serviceRecoveryOptions">The service recovery options.</param>
        </member>
        <member name="M:Topshelf.Options.ServiceRecoveryOption.ApplyTo(Topshelf.HostConfigurators.HostConfigurator)">
            <summary>
            Applies the option to the specified host configurator.
            </summary>
            <param name="configurator">The host configurator.</param>
        </member>
        <member name="T:Topshelf.Options.StartTimeoutOption">
            <summary>
            Represents an option to set a service start timeout (in seconds).
            </summary>
            <seealso cref="T:Topshelf.Options.Option" />
        </member>
        <member name="F:Topshelf.Options.StartTimeoutOption.startTimeout">
            <summary>
            The start timeout (in seconds).
            </summary>
        </member>
        <member name="M:Topshelf.Options.StartTimeoutOption.#ctor(System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:Topshelf.Options.StartTimeoutOption"/> class.
            </summary>
            <param name="startTimeout">The start timeout (in seconds).</param>
        </member>
        <member name="M:Topshelf.Options.StartTimeoutOption.ApplyTo(Topshelf.HostConfigurators.HostConfigurator)">
            <summary>
            Applies the option to the specified host configurator.
            </summary>
            <param name="configurator">The host configurator.</param>
        </member>
        <member name="T:Topshelf.Options.StopTimeoutOption">
            <summary>
            Represents an option to set a service stop timeout (in seconds).
            </summary>
            <seealso cref="T:Topshelf.Options.Option" />
        </member>
        <member name="F:Topshelf.Options.StopTimeoutOption.stopTimeoout">
            <summary>
            The stop timeout (in seconds).
            </summary>
        </member>
        <member name="M:Topshelf.Options.StopTimeoutOption.#ctor(System.Int32)">
            <summary>
            Initializes a new instance of the <see cref="T:Topshelf.Options.StopTimeoutOption"/> class.
            </summary>
            <param name="stopTimeoout">The stop timeout (in seconds).</param>
        </member>
        <member name="M:Topshelf.Options.StopTimeoutOption.ApplyTo(Topshelf.HostConfigurators.HostConfigurator)">
            <summary>
            Applies the option to the specified host configurator.
            </summary>
            <param name="configurator">The host configurator.</param>
        </member>
        <member name="M:Topshelf.ServiceConfigurators.ServiceConfigurator.BeforeStartingService(System.Action{Topshelf.HostStartContext})">
            <summary>
            Registers a callback invoked before the service Start method is called.
            </summary>
        </member>
        <member name="M:Topshelf.ServiceConfigurators.ServiceConfigurator.AfterStartingService(System.Action{Topshelf.HostStartedContext})">
            <summary>
            Registers a callback invoked after the service Start method is called.
            </summary>
        </member>
        <member name="M:Topshelf.ServiceConfigurators.ServiceConfigurator.BeforeStoppingService(System.Action{Topshelf.HostStopContext})">
            <summary>
            Registers a callback invoked before the service Stop method is called.
            </summary>
        </member>
        <member name="M:Topshelf.ServiceConfigurators.ServiceConfigurator.AfterStoppingService(System.Action{Topshelf.HostStoppedContext})">
            <summary>
            Registers a callback invoked after the service Stop method is called.
            </summary>
        </member>
        <member name="M:Topshelf.ServiceEventConfiguratorExtensions.BeforeStartingService``1(``0,System.Action)">
            <summary>
            Registers a callback invoked before the service Start method is called.
            </summary>
        </member>
        <member name="M:Topshelf.ServiceEventConfiguratorExtensions.AfterStartingService``1(``0,System.Action)">
            <summary>
            Registers a callback invoked after the service Start method is called.
            </summary>
        </member>
        <member name="M:Topshelf.ServiceEventConfiguratorExtensions.BeforeStoppingService``1(``0,System.Action)">
            <summary>
            Registers a callback invoked before the service Stop method is called.
            </summary>
        </member>
        <member name="M:Topshelf.ServiceEventConfiguratorExtensions.AfterStoppingService``1(``0,System.Action)">
            <summary>
            Registers a callback invoked after the service Stop method is called.
            </summary>
        </member>
        <member name="T:Topshelf.ServiceRecoveryConfigurator">
            <summary>
            Defines a service recovery configurator.
            </summary>
        </member>
        <member name="M:Topshelf.ServiceRecoveryConfigurator.RestartService(System.TimeSpan)">
            <summary>
              Restart the service after waiting the delay period specified
            </summary>
            <param name="delay">The delay.</param>
            <returns>The service recovery configurator.</returns>
        </member>
        <member name="M:Topshelf.ServiceRecoveryConfigurator.RestartService(System.Int32)">
            <summary>
              Restart the service after waiting the delay period in minutes
            </summary>
            <param name="delayInMinutes">The delay in minutes.</param>
            <returns>The service recovery configurator.</returns>
        </member>
        <member name="M:Topshelf.ServiceRecoveryConfigurator.RestartComputer(System.TimeSpan,System.String)">
            <summary>
              Restart the computer after waiting the delay period specified
            </summary>
            <param name="delay">The delay.</param>
            <param name="message"></param>
            <returns>The service recovery configurator.</returns>
        </member>
        <member name="M:Topshelf.ServiceRecoveryConfigurator.RestartComputer(System.Int32,System.String)">
            <summary>
              Restart the computer after waiting the delay period in minutes
            </summary>
            <param name="delayInMinutes">The delay in minutes.</param>
            <param name="message"> </param>
            <returns>The service recovery configurator.</returns>
        </member>
        <member name="M:Topshelf.ServiceRecoveryConfigurator.RunProgram(System.TimeSpan,System.String)">
            <summary>
              Run the command specified
            </summary>
            <param name="delay">The delay.</param>
            <param name="command">The command to run.</param>
            <returns>The service recovery configurator.</returns>
        </member>
        <member name="M:Topshelf.ServiceRecoveryConfigurator.RunProgram(System.Int32,System.String)">
            <summary>
              Run the command specified
            </summary>
            <param name="delayInMinutes">The delay in minutes.</param>
            <param name="command">The command to run.</param>
            <returns>The service recovery configurator.</returns>
        </member>
        <member name="M:Topshelf.ServiceRecoveryConfigurator.TakeNoAction">
            <summary>
              Take no action
            </summary>
            <returns>The service recovery configurator.</returns>
        </member>
        <member name="M:Topshelf.ServiceRecoveryConfigurator.SetResetPeriod(System.Int32)">
            <summary>
              Specifies the reset period for the restart options
            </summary>
            <param name="days">The reset period in days.</param>
        </member>
        <member name="M:Topshelf.ServiceRecoveryConfigurator.OnCrashOnly">
            <summary>
            Specifies that the recovery actions should only be taken on a service crash. If the service exits
            with a non-zero exit code, it will not be restarted.
            </summary>
        </member>
        <member name="M:Topshelf.TestHostExtensions.UseTestHost(Topshelf.HostConfigurators.HostConfigurator)">
            <summary>
            Configures the test host, which simply starts and stops the service. Meant to be used
            to verify the service can be created, started, stopped, and disposed without issues.
            </summary>
        </member>
        <member name="T:Topshelf.Host">
            <summary>
              A Host can be a number of configured service hosts, from installers to service runners
            </summary>
        </member>
        <member name="M:Topshelf.Host.Run">
            <summary>
              Runs the configured host
            </summary>
        </member>
        <member name="T:Topshelf.HostControl">
            <summary>
            Allows the service to control the host while running
            </summary>
        </member>
        <member name="M:Topshelf.HostControl.RequestAdditionalTime(System.TimeSpan)">
            <summary>
            Tells the Host that the service is still starting, which resets the
            timeout.
            </summary>
        </member>
        <member name="M:Topshelf.HostControl.Stop">
            <summary>
            Stops the Host
            </summary>
        </member>
        <member name="M:Topshelf.HostControl.Stop(Topshelf.TopshelfExitCode)">
            <summary>
            Stops the Host, returning the specified exit code
            </summary>
        </member>
        <member name="T:Topshelf.HostFactory">
            <summary>
              Configure and run a service host using the HostFactory
            </summary>
        </member>
        <member name="M:Topshelf.HostFactory.New(System.Action{Topshelf.HostConfigurators.HostConfigurator})">
            <summary>
              Configures a new service host
            </summary>
            <param name="configureCallback"> Configuration method to call </param>
            <returns> A Topshelf service host, ready to run </returns>
        </member>
        <member name="M:Topshelf.HostFactory.Run(System.Action{Topshelf.HostConfigurators.HostConfigurator})">
            <summary>
              Configures and runs a new service host, handling any exceptions and writing them to the log.
            </summary>
            <param name="configureCallback"> Configuration method to call </param>
            <returns> Returns the exit code of the process that should be returned by your application's main method </returns>
        </member>
        <member name="M:Topshelf.HostStartContext.CancelStart">
            <summary>
            If called, prevents the service from starting
            </summary>
        </member>
        <member name="T:Topshelf.Hosts.HelpHost">
            <summary>
              Displays the Topshelf command line reference
            </summary>
        </member>
        <member name="P:Topshelf.Hosts.InstallHost.InstallServiceSettingsImpl.CanHandlePowerEvent">
            <summary>
            True if the service handles power change events
            </summary>
        </member>
        <member name="T:Topshelf.Logging.LogWriter">
            <summary>
            Implementers handle logging and filtering based on logging levels.
            </summary>
        </member>
        <member name="T:Topshelf.Logging.LogWriterOutputProvider">
            <summary>
            Delegate to provide the log output if the log level is enabled
            </summary>
            <returns></returns>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.Debug(System.Object)">
            <summary>
            Logs a debug message.
            
            </summary>
            <param name="message">The message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.Debug(System.Object,System.Exception)">
            <summary>
            Logs a debug message.
            
            </summary>
            <param name="exception">The exception to log</param>
            <param name="message">The message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.DebugFormat(System.String,System.Object[])">
            <summary>
            Logs a debug message.
            
            </summary>
            <param name="format">Format string for the message to log</param>
            <param name="args">Format arguments for the message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.DebugFormat(System.IFormatProvider,System.String,System.Object[])">
            <summary>
            Logs a debug message.
            
            </summary>
            <param name="formatProvider">The format provider to use</param>
            <param name="format">Format string for the message to log</param>
            <param name="args">Format arguments for the message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.Info(System.Object)">
            <summary>
            Logs an info message.
            
            </summary>
            <param name="message">The message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.Info(System.Object,System.Exception)">
            <summary>
            Logs an info message.
            
            </summary>
            <param name="exception">The exception to log</param>
            <param name="message">The message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.InfoFormat(System.String,System.Object[])">
            <summary>
            Logs an info message.
            
            </summary>
            <param name="format">Format string for the message to log</param>
            <param name="args">Format arguments for the message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.InfoFormat(System.IFormatProvider,System.String,System.Object[])">
            <summary>
            Logs an info message.
            
            </summary>
            <param name="formatProvider">The format provider to use</param>
            <param name="format">Format string for the message to log</param>
            <param name="args">Format arguments for the message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.Warn(System.Object)">
            <summary>
            Logs a warn message.
            
            </summary>
            <param name="message">The message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.Warn(System.Object,System.Exception)">
            <summary>
            Logs a warn message.
            
            </summary>
            <param name="exception">The exception to log</param>
            <param name="message">The message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.WarnFormat(System.String,System.Object[])">
            <summary>
            Logs a warn message.
            
            </summary>
            <param name="format">Format string for the message to log</param>
            <param name="args">Format arguments for the message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.WarnFormat(System.IFormatProvider,System.String,System.Object[])">
            <summary>
            Logs a warn message.
            
            </summary>
            <param name="formatProvider">The format provider to use</param>
            <param name="format">Format string for the message to log</param>
            <param name="args">Format arguments for the message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.Error(System.Object)">
            <summary>
            Logs an error message.
            
            </summary>
            <param name="message">The message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.Error(System.Object,System.Exception)">
            <summary>
            Logs an error message.
            
            </summary>
            <param name="exception">The exception to log</param>
            <param name="message">The message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.ErrorFormat(System.String,System.Object[])">
            <summary>
            Logs an error message.
            
            </summary>
            <param name="format">Format string for the message to log</param>
            <param name="args">Format arguments for the message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.ErrorFormat(System.IFormatProvider,System.String,System.Object[])">
            <summary>
            Logs an error message.
            
            </summary>
            <param name="formatProvider">The format provider to use</param>
            <param name="format">Format string for the message to log</param>
            <param name="args">Format arguments for the message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.Fatal(System.Object)">
            <summary>
            Logs a fatal message.
            
            </summary>
            <param name="message">The message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.Fatal(System.Object,System.Exception)">
            <summary>
            Logs a fatal message.
            
            </summary>
            <param name="exception">The exception to log</param>
            <param name="message">The message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.FatalFormat(System.String,System.Object[])">
            <summary>
            Logs a fatal message.
            
            </summary>
            <param name="format">Format string for the message to log</param>
            <param name="args">Format arguments for the message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.FatalFormat(System.IFormatProvider,System.String,System.Object[])">
            <summary>
            Logs a fatal message.
            
            </summary>
            <param name="formatProvider">The format provider to use</param>
            <param name="format">Format string for the message to log</param>
            <param name="args">Format arguments for the message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.DebugFormat(System.Exception,System.String,System.Object[])">
            <summary>
            Logs a debug message.
            
            </summary>
            <param name="exception">The exception to log</param>
            <param name="format">Format string for the message to log</param>
            <param name="args">Format arguments for the message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.DebugFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])">
            <summary>
            Logs a debug message.
            
            </summary>
            <param name="exception">The exception to log</param>
            <param name="formatProvider">The format provider to use</param>
            <param name="format">Format string for the message to log</param>
            <param name="args">Format arguments for the message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.InfoFormat(System.Exception,System.String,System.Object[])">
            <summary>
            Logs an info message.
            
            </summary>
            <param name="exception">The exception to log</param>
            <param name="format">Format string for the message to log</param>
            <param name="args">Format arguments for the message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.InfoFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])">
            <summary>
            Logs an info message.
            
            </summary>
            <param name="exception">The exception to log</param>
            <param name="formatProvider">The format provider to use</param>
            <param name="format">Format string for the message to log</param>
            <param name="args">Format arguments for the message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.WarnFormat(System.Exception,System.String,System.Object[])">
            <summary>
            Logs a warn message.
            
            </summary>
            <param name="exception">The exception to log</param>
            <param name="format">Format string for the message to log</param>
            <param name="args">Format arguments for the message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.WarnFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])">
            <summary>
            Logs a warn message.
            
            </summary>
            <param name="exception">The exception to log</param>
            <param name="formatProvider">The format provider to use</param>
            <param name="format">Format string for the message to log</param>
            <param name="args">Format arguments for the message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.ErrorFormat(System.Exception,System.String,System.Object[])">
            <summary>
            Logs an error message.
            
            </summary>
            <param name="exception">The exception to log</param>
            <param name="format">Format string for the message to log</param>
            <param name="args">Format arguments for the message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.ErrorFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])">
            <summary>
            Logs an error message.
            
            </summary>
            <param name="exception">The exception to log</param>
            <param name="formatProvider">The format provider to use</param>
            <param name="format">Format string for the message to log</param>
            <param name="args">Format arguments for the message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.FatalFormat(System.Exception,System.String,System.Object[])">
            <summary>
            Logs a fatal message.
            
            </summary>
            <param name="exception">The exception to log</param>
            <param name="format">Format string for the message to log</param>
            <param name="args">Format arguments for the message to log</param>
        </member>
        <member name="M:Topshelf.Logging.TraceLogWriter.FatalFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])">
            <summary>
            Logs a fatal message.
            
            </summary>
            <param name="exception">The exception to log</param>
            <param name="formatProvider">The format provider to use</param>
            <param name="format">Format string for the message to log</param>
            <param name="args">Format arguments for the message to log</param>
        </member>
        <member name="F:Topshelf.PowerEventCode.QuerySuspend">
            <summary>
            The system has requested permission to suspend the computer. An application that grants permission should carry out preparations for the suspension before returning.
            <remarks>Not supported by <see cref="T:Topshelf.Hosts.ConsoleRunHost"/></remarks>
            </summary>
        </member>
        <member name="F:Topshelf.PowerEventCode.QuerySuspendFailed">
            <summary>
            The system was denied permission to suspend the computer. This status is broadcast if any application or driver denied a previous <see cref="F:Topshelf.PowerEventCode.QuerySuspend"/> status.
            <remarks>Not supported by <see cref="T:Topshelf.Hosts.ConsoleRunHost"/></remarks>
            </summary>
        </member>
        <member name="F:Topshelf.PowerEventCode.Suspend">
            <summary>
            The computer is about to enter a suspended state. This event is typically broadcast when all applications and installable drivers have returned true to a previous QuerySuspend state.
            </summary>
        </member>
        <member name="F:Topshelf.PowerEventCode.ResumeCritical">
            <summary>
            The system has resumed operation after a critical suspension caused by a failing battery.
            <remarks>Not supported by <see cref="T:Topshelf.Hosts.ConsoleRunHost"/></remarks>
            </summary>
        </member>
        <member name="F:Topshelf.PowerEventCode.ResumeSuspend">
            <summary>
            The system has resumed operation after being suspended.
            <remarks>Not supported by <see cref="T:Topshelf.Hosts.ConsoleRunHost"/></remarks>
            </summary>
        </member>
        <member name="F:Topshelf.PowerEventCode.BatteryLow">
            <summary>
            Battery power is low.
            <remarks>Not supported by <see cref="T:Topshelf.Hosts.ConsoleRunHost"/></remarks>
            </summary>
        </member>
        <member name="F:Topshelf.PowerEventCode.PowerStatusChange">
            <summary>
            A change in the power status of the computer is detected, such as a switch from battery power to A/C. The system also broadcasts this event when remaining battery power slips below the threshold specified by the user or if the battery power changes by a specified percentage.
            </summary>
        </member>
        <member name="F:Topshelf.PowerEventCode.OemEvent">
            <summary>
            An Advanced Power Management (APM) BIOS signaled an APM OEM event.
            <remarks>Not supported by <see cref="T:Topshelf.Hosts.ConsoleRunHost"/></remarks>
            </summary>
        </member>
        <member name="F:Topshelf.PowerEventCode.ResumeAutomatic">
            <summary>
            The computer has woken up automatically to handle an event.
            </summary>
        </member>
        <member name="T:Topshelf.Runtime.HostEnvironment">
            <summary>
            Abstracts the environment in which the host in running (different OS versions, platforms,
            bitness, etc.)
            </summary>
        </member>
        <member name="P:Topshelf.Runtime.HostEnvironment.IsAdministrator">
            <summary>
            Determines if the service is running as an administrator
            </summary>
        </member>
        <member name="P:Topshelf.Runtime.HostEnvironment.IsRunningAsAService">
            <summary>
            Determines if the process is running as a service
            </summary>
        </member>
        <member name="M:Topshelf.Runtime.HostEnvironment.IsServiceInstalled(System.String)">
            <summary>
            Determines if the service is installed
            </summary>
            <param name="serviceName">The name of the service as it is registered</param>
            <returns>True if the service is installed, otherwise false</returns>
        </member>
        <member name="M:Topshelf.Runtime.HostEnvironment.IsServiceStopped(System.String)">
            <summary>
            Determines if the service is stopped, to prevent a debug instance from being started
            </summary>
            <param name="serviceName"></param>
            <returns></returns>
        </member>
        <member name="M:Topshelf.Runtime.HostEnvironment.StartService(System.String,System.TimeSpan)">
            <summary>
            Start the service using operating system controls
            </summary>
            <param name="serviceName">The name of the service</param>
            <param name="startTimeOut">Waits for the service to reach the running status in the specified time.</param>
        </member>
        <member name="M:Topshelf.Runtime.HostEnvironment.StopService(System.String,System.TimeSpan)">
            <summary>
            Stop the service using operating system controls
            </summary>
            <param name="serviceName">The name of the service</param>
            <param name="stopTimeOut">Waits for the service to reach the stopeed status in the specified time.</param>
        </member>
        <member name="M:Topshelf.Runtime.HostEnvironment.InstallService(Topshelf.Runtime.InstallHostSettings,System.Action{Topshelf.Runtime.InstallHostSettings},System.Action,System.Action,System.Action)">
            <summary>
            Install the service using the settings provided
            </summary>
            <param name="settings"></param>
            <param name="beforeInstall"> </param>
            <param name="afterInstall"> </param>
            <param name="beforeRollback"> </param>
            <param name="afterRollback"> </param>
        </member>
        <member name="M:Topshelf.Runtime.HostEnvironment.UninstallService(Topshelf.Runtime.HostSettings,System.Action,System.Action)">
            <summary>
            Uninstall the service using the settings provided
            </summary>
            <param name="settings"></param>
            <param name="beforeUninstall"></param>
            <param name="afterUninstall"></param>
        </member>
        <member name="M:Topshelf.Runtime.HostEnvironment.RunAsAdministrator">
            <summary>
            Restarts the service as an administrator which has permission to modify the service configuration
            </summary>
            <returns>True if the child process was executed, otherwise false</returns>
        </member>
        <member name="M:Topshelf.Runtime.HostEnvironment.CreateServiceHost(Topshelf.Runtime.HostSettings,Topshelf.Runtime.ServiceHandle)">
            <summary>
            Create a service host appropriate for the host environment
            </summary>
            <param name="settings"></param>
            <param name="serviceHandle"></param>
            <returns></returns>
        </member>
        <member name="M:Topshelf.Runtime.HostEnvironment.SendServiceCommand(System.String,System.Int32)">
            <summary>
            Send a command to a service to make it do something
            </summary>
            <param name="serviceName">The service name</param>
            <param name="command">The command value</param>
        </member>
        <member name="T:Topshelf.Runtime.HostSettings">
            <summary>
              The settings that have been configured for the operating system service
            </summary>
        </member>
        <member name="P:Topshelf.Runtime.HostSettings.Name">
            <summary>
              The name of the service
            </summary>
        </member>
        <member name="P:Topshelf.Runtime.HostSettings.DisplayName">
            <summary>
              The name of the service as it should be displayed in the service control manager
            </summary>
        </member>
        <member name="P:Topshelf.Runtime.HostSettings.Description">
            <summary>
              The description of the service that is displayed in the service control manager
            </summary>
        </member>
        <member name="P:Topshelf.Runtime.HostSettings.InstanceName">
            <summary>
              The service instance name that should be used when the service is registered
            </summary>
        </member>
        <member name="P:Topshelf.Runtime.HostSettings.ServiceName">
            <summary>
              Returns the Windows service name, including the instance name, which is registered with the SCM Example: myservice$bob
            </summary>
            <returns> </returns>
        </member>
        <member name="P:Topshelf.Runtime.HostSettings.CanPauseAndContinue">
            <summary>
              True if the service supports pause and continue
            </summary>
        </member>
        <member name="P:Topshelf.Runtime.HostSettings.CanShutdown">
            <summary>
              True if the service can handle the shutdown event
            </summary>
        </member>
        <member name="P:Topshelf.Runtime.HostSettings.CanSessionChanged">
            <summary>
            True if the service handles session change events
            </summary>
        </member>
        <member name="P:Topshelf.Runtime.HostSettings.CanHandlePowerEvent">
            <summary>
            True if the service handles power change events
            </summary>
        </member>
        <member name="P:Topshelf.Runtime.HostSettings.StartTimeOut">
            <summary>
            The amount of time to wait for the service to start before timing out. Default is 10 seconds.
            </summary>
        </member>
        <member name="P:Topshelf.Runtime.HostSettings.StopTimeOut">
            <summary>
            The amount of time to wait for the service to stop before timing out. Default is 10 seconds.
            </summary>
        </member>
        <member name="P:Topshelf.Runtime.HostSettings.ExceptionCallback">
            <summary>
            A callback to provide visibility into exceptions while Topshelf is performing its
            own handling.
            </summary>
        </member>
        <member name="P:Topshelf.Runtime.HostSettings.UnhandledExceptionPolicy">
            <summary>
            The policy that will be used when Topself detects an UnhandledException in the
            application. The default policy is to log an error and to stop the service.
            </summary>
        </member>
        <member name="P:Topshelf.Runtime.HostSettings.CanHandleCtrlBreak">
            <summary>
            True if the service handles Ctrl+Break gracefully
            </summary>
        </member>
        <member name="T:Topshelf.Runtime.ServiceHandle">
            <summary>
            A handle to a service being hosted by the Host
            </summary>
        </member>
        <member name="M:Topshelf.Runtime.ServiceHandle.Start(Topshelf.HostControl)">
            <summary>
            Start the service
            </summary>
            <param name="hostControl"></param>
            <returns>True if the service was started, otherwise false</returns>
        </member>
        <member name="M:Topshelf.Runtime.ServiceHandle.Pause(Topshelf.HostControl)">
            <summary>
            Pause the service
            </summary>
            <param name="hostControl"></param>
            <returns>True if the service was paused, otherwise false</returns>
        </member>
        <member name="M:Topshelf.Runtime.ServiceHandle.Continue(Topshelf.HostControl)">
            <summary>
            Continue the service from a paused state
            </summary>
            <param name="hostControl"></param>
            <returns>True if the service was able to continue, otherwise false</returns>
        </member>
        <member name="M:Topshelf.Runtime.ServiceHandle.Stop(Topshelf.HostControl)">
            <summary>
            Stop the service
            </summary>
            <param name="hostControl"></param>
            <returns>True if the service was stopped, or false if the service cannot be stopped at this time</returns>
        </member>
        <member name="M:Topshelf.Runtime.ServiceHandle.Shutdown(Topshelf.HostControl)">
            <summary>
            Handle the shutdown event
            </summary>
            <param name="hostControl"></param>
        </member>
        <member name="M:Topshelf.Runtime.ServiceHandle.SessionChanged(Topshelf.HostControl,Topshelf.SessionChangedArguments)">
            <summary>
            Handle the session change event
            </summary>
            <param name="hostControl"></param>
            <param name="arguments"></param>
        </member>
        <member name="M:Topshelf.Runtime.ServiceHandle.PowerEvent(Topshelf.HostControl,Topshelf.PowerEventArguments)">
            <summary>
            Handle the power change event
            </summary>
            <param name="hostControl"></param>
            <param name="arguments"></param>
        </member>
        <member name="M:Topshelf.Runtime.ServiceHandle.CustomCommand(Topshelf.HostControl,System.Int32)">
            <summary>
            Handle the custom command
            </summary>
            <param name="hostControl"></param>
            <param name="command"></param>
        </member>
        <member name="F:Topshelf.Runtime.UnhandledExceptionPolicyCode.LogErrorAndStopService">
            <summary>
            If an UnhandledException occurs, Topshelf will log an error and 
            stop the service
            </summary>
        </member>
        <member name="F:Topshelf.Runtime.UnhandledExceptionPolicyCode.LogErrorOnly">
            <summary>
            If an UnhandledException occurs, Topshelf will log an error and 
            continue without stopping the service
            </summary>
        </member>
        <member name="F:Topshelf.Runtime.UnhandledExceptionPolicyCode.TakeNoAction">
            <summary>
            If an UnhandledException occurs, Topshelf will take no action. 
            It is assumed that the application will handle the UnhandledException itself.
            </summary>
        </member>
        <member name="F:Topshelf.Runtime.Windows.NativeMethods.SCM_ACCESS.SC_MANAGER_CONNECT">
            <summary>
            Required to connect to the service control manager.
            </summary>
        </member>
        <member name="F:Topshelf.Runtime.Windows.NativeMethods.SCM_ACCESS.SC_MANAGER_CREATE_SERVICE">
            <summary>
            Required to call the CreateService function to create a service
            object and add it to the database.
            </summary>
        </member>
        <member name="F:Topshelf.Runtime.Windows.NativeMethods.SCM_ACCESS.SC_MANAGER_ENUMERATE_SERVICE">
            <summary>
            Required to call the EnumServicesStatusEx function to list the 
            services that are in the database.
            </summary>
        </member>
        <member name="F:Topshelf.Runtime.Windows.NativeMethods.SCM_ACCESS.SC_MANAGER_LOCK">
            <summary>
            Required to call the LockServiceDatabase function to acquire a 
            lock on the database.
            </summary>
        </member>
        <member name="F:Topshelf.Runtime.Windows.NativeMethods.SCM_ACCESS.SC_MANAGER_QUERY_LOCK_STATUS">
            <summary>
            Required to call the QueryServiceLockStatus function to retrieve 
            the lock status information for the database.
            </summary>
        </member>
        <member name="F:Topshelf.Runtime.Windows.NativeMethods.SCM_ACCESS.SC_MANAGER_MODIFY_BOOT_CONFIG">
            <summary>
            Required to call the NotifyBootConfigStatus function.
            </summary>
        </member>
        <member name="F:Topshelf.Runtime.Windows.NativeMethods.SCM_ACCESS.SC_MANAGER_ALL_ACCESS">
            <summary>
            Includes STANDARD_RIGHTS_REQUIRED, in addition to all access 
            rights in this table.
            </summary>
        </member>
        <member name="F:Topshelf.Runtime.Windows.NativeMethods.SC_ACTION.Type">
            <summary>
            The action to be performed. This member can be one of the following values from the <see cref="T:Topshelf.Runtime.Windows.NativeMethods.SC_ACTION_TYPE" /> enumeration type.
            </summary>
        </member>
        <member name="F:Topshelf.Runtime.Windows.NativeMethods.SC_ACTION.Delay">
            <summary>
            The time to wait before performing the specified action, in milliseconds.
            </summary>
        </member>
        <member name="T:Topshelf.Runtime.Windows.RestartServiceRecoveryAction">
            <summary>
            Represents a restart service service recovery action.
            </summary>
            <seealso cref="T:Topshelf.Runtime.Windows.ServiceRecoveryAction" />
        </member>
        <member name="M:Topshelf.Runtime.Windows.RestartServiceRecoveryAction.#ctor(System.TimeSpan)">
            <summary>
            Initializes a new instance of the <see cref="T:Topshelf.Runtime.Windows.RestartServiceRecoveryAction"/> class.
            </summary>
            <param name="delay">The delay.</param>
        </member>
        <member name="M:Topshelf.Runtime.Windows.RestartServiceRecoveryAction.GetAction">
            <summary>
            Gets the service recovery configuration action.
            </summary>
            <returns>A <see cref="T:Topshelf.Runtime.Windows.NativeMethods.SC_ACTION"/> representing the restart service service recovery configuration action.</returns>
        </member>
        <member name="T:Topshelf.Runtime.Windows.RestartSystemRecoveryAction">
            <summary>
            Represents a restart system service recovery action.
            </summary>
            <seealso cref="T:Topshelf.Runtime.Windows.ServiceRecoveryAction" />
        </member>
        <member name="M:Topshelf.Runtime.Windows.RestartSystemRecoveryAction.#ctor(System.TimeSpan,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Topshelf.Runtime.Windows.RestartSystemRecoveryAction"/> class.
            </summary>
            <param name="delay">The delay.</param>
            <param name="restartMessage">The restart message.</param>
        </member>
        <member name="P:Topshelf.Runtime.Windows.RestartSystemRecoveryAction.RestartMessage">
            <summary>
            Gets the system restart message.
            </summary>
            <value>The system restart message.</value>
        </member>
        <member name="M:Topshelf.Runtime.Windows.RestartSystemRecoveryAction.GetAction">
            <summary>
            Gets the service recovery configuration action.
            </summary>
            <returns>A <see cref="T:Topshelf.Runtime.Windows.NativeMethods.SC_ACTION"/> representing the restart system service recovery configuration action.</returns>
        </member>
        <member name="T:Topshelf.Runtime.Windows.RunProgramRecoveryAction">
            <summary>
            Represents a run command service recovery action.
            </summary>
            <seealso cref="T:Topshelf.Runtime.Windows.ServiceRecoveryAction" />
        </member>
        <member name="M:Topshelf.Runtime.Windows.RunProgramRecoveryAction.#ctor(System.TimeSpan,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Topshelf.Runtime.Windows.RunProgramRecoveryAction"/> class.
            </summary>
            <param name="delay">The delay.</param>
            <param name="command">The command.</param>
        </member>
        <member name="P:Topshelf.Runtime.Windows.RunProgramRecoveryAction.Command">
            <summary>
            Gets the command to run.
            </summary>
            <value>The command. to run</value>
        </member>
        <member name="M:Topshelf.Runtime.Windows.RunProgramRecoveryAction.GetAction">
            <summary>
            Gets the service recovery configuration action.
            </summary>
            <returns>A <see cref="T:Topshelf.Runtime.Windows.NativeMethods.SC_ACTION"/> representing the run command service recovery configuration action.</returns>
        </member>
        <member name="T:Topshelf.Runtime.Windows.ServiceRecoveryAction">
            <summary>
            Represents a service recovery action.
            </summary>
        </member>
        <member name="M:Topshelf.Runtime.Windows.ServiceRecoveryAction.#ctor(System.TimeSpan)">
            <summary>
            Initializes a new instance of the <see cref="T:Topshelf.Runtime.Windows.ServiceRecoveryAction"/> class.
            </summary>
            <param name="delay">The delay.</param>
        </member>
        <member name="P:Topshelf.Runtime.Windows.ServiceRecoveryAction.Delay">
            <summary>
            Gets the delay in milliseconds.
            </summary>
            <value>The delay in milliseconds.</value>
        </member>
        <member name="M:Topshelf.Runtime.Windows.ServiceRecoveryAction.GetAction">
            <summary>
            Gets the service recovery configuration action.
            </summary>
            <returns>A <see cref="T:Topshelf.Runtime.Windows.NativeMethods.SC_ACTION"/> representing the service recovery configuration action.</returns>
        </member>
        <member name="T:Topshelf.Runtime.Windows.TakeNoActionAction">
            <summary>
            Represents a take no action recovery action.
            </summary>
        </member>
        <member name="M:Topshelf.Runtime.Windows.TakeNoActionAction.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Topshelf.Runtime.Windows.TakeNoActionAction"/> class.
            </summary>
        </member>
        <member name="M:Topshelf.Runtime.Windows.TakeNoActionAction.GetAction">
            <summary>
            Gets the service recovery configuration action.
            </summary>
            <returns>A <see cref="T:Topshelf.Runtime.Windows.NativeMethods.SC_ACTION"/> representing the take no action service recovery configuration action.</returns>
        </member>
        <member name="M:Topshelf.Runtime.Windows.WindowsHostSettings.#ctor">
            <summary>
              Creates a new WindowsServiceDescription using empty strings for the properties. The class is required to have names by the consumers.
            </summary>
        </member>
        <member name="M:Topshelf.Runtime.Windows.WindowsHostSettings.#ctor(System.String,System.String)">
            <summary>
              Creates a new WindowsServiceDescription instance using the passed parameters.
            </summary>
            <param name="name"> </param>
            <param name="instanceName"> </param>
        </member>
        <member name="T:Topshelf.ServiceCustomCommand">
            <summary>
            Implemented by services that support custom command events
            </summary>
        </member>
        <member name="T:Topshelf.ServicePowerEvent">
            <summary>
            Implemented by services that support power change events
            </summary>
        </member>
        <member name="T:Topshelf.ServiceSessionChange">
            <summary>
            Implemented by services that support session change events
            </summary>
        </member>
        <member name="T:Topshelf.ServiceShutdown">
            <summary>
            Implemented by services that support service shutdown
            </summary>
        </member>
        <member name="M:Topshelf.ServiceShutdown.Shutdown(Topshelf.HostControl)">
            <summary>
            Called when the operating system invokes the service shutdown method. There is little
            time to react here, but the application try to use RequestAdditionalTime if necessary,
            but this is really a shut down quick and bail method.
            </summary>
            <param name="hostControl"></param>
        </member>
        <member name="T:Topshelf.ServiceSuspend">
            <summary>
            If implemented by a service, used to pause/continue the service
            </summary>
        </member>
    </members>
</doc>