File: WebEventCodes.xml

package info (click to toggle)
mono 6.14.1%2Bds2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,282,732 kB
  • sloc: cs: 11,182,461; xml: 2,850,281; ansic: 699,123; cpp: 122,919; perl: 58,604; javascript: 30,841; asm: 21,845; makefile: 19,602; sh: 10,973; python: 4,772; pascal: 925; sql: 859; sed: 16; php: 1
file content (1456 lines) | stat: -rw-r--r-- 85,133 bytes parent folder | download | duplicates (8)
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
<?xml version="1.0" encoding="utf-8"?>
<Type Name="WebEventCodes" FullName="System.Web.Management.WebEventCodes">
  <TypeSignature Language="C#" Value="public sealed class WebEventCodes" />
  <AssemblyInfo>
    <AssemblyName>System.Web</AssemblyName>
    <AssemblyVersion>2.0.0.0</AssemblyVersion>
  </AssemblyInfo>
  <Base>
    <BaseTypeName>System.Object</BaseTypeName>
  </Base>
  <Interfaces />
  <Docs>
    <remarks>
      <attribution license="cc4" from="Microsoft" modified="false" />
      <para>ASP.NET health monitoring allows production and operations staff to manage deployed Web applications. The <see cref="N:System.Web.Management" /> namespace contains the health-event types responsible for packaging application health-status data and the provider types responsible for processing this data. It also contains supporting types that help during the management of health events.</para>
      <para>The <see cref="T:System.Web.Management.WebEventCodes" /> class contains codes that identify types of health-monitoring events. Two types of codes are defined within the class: major codes, which identify the ASP.NET health-monitoring events; and detail codes, which provide more information about a related major code. These codes are implemented as integers, rather than as an enumeration, to allow for extensibility.</para>
      <para>When a health-monitoring event is raised, it is associated with a major event code. The following list identifies the categories of major event codes that are defined within the <see cref="T:System.Web.Management.WebEventCodes" /> class:</para>
      <list type="bullet">
        <item>
          <para>Application codes. Application codes identify events in the lifetime of an application, such as startup and shutdown events. Their values are greater than the <see cref="F:System.Web.Management.WebEventCodes.ApplicationCodeBase" /> field constant. They are associated with the <see cref="T:System.Web.Management.WebApplicationLifetimeEvent" /> event type. The heartbeat event is a special kind of application event. It identifies events raised at periodic intervals to provide information relative to the state of the running process. It is associated with the <see cref="T:System.Web.Management.WebHeartbeatEvent" /> event type. </para>
        </item>
        <item>
          <para>Request codes. Request codes identify non-error events that provide per-request information. Their values are greater than the <see cref="F:System.Web.Management.WebEventCodes.RequestCodeBase" /> field constant. They are associated with the <see cref="T:System.Web.Management.WebRequestEvent" /> event type. </para>
        </item>
        <item>
          <para>Error codes. Error codes identify events that contain information about two kinds of errors: errors specifically related to a Web request and systemic errors. The errors related to Web requests include unhandled exceptions, view-state errors, and input-validation errors. They are associated with the <see cref="T:System.Web.Management.WebRequestErrorEvent" /> event type. The systemic errors relate to configuration or application code, including parser errors and compilation errors. They are associated with the <see cref="T:System.Web.Management.WebErrorEvent" /> event type. Both kinds of errors have values greater than the <see cref="F:System.Web.Management.WebEventCodes.ErrorCodeBase" /> field constant.</para>
        </item>
        <item>
          <para>Audit codes. Audit codes identify events that contain auditable information such as login attempts, access security violations, and authorization violations. Their values are greater than <see cref="F:System.Web.Management.WebEventCodes.AuditCodeBase" />. They are associated with <see cref="T:System.Web.Management.WebAuditEvent" /> and its derived event types. </para>
        </item>
        <item>
          <para>Miscellaneous codes. Miscellaneous codes do not identify events but are used to flag nonstandard event information. Their values are greater than <see cref="F:System.Web.Management.WebEventCodes.MiscCodeBase" />. Refer also to <see cref="F:System.Web.Management.WebEventCodes.WebEventProviderInformation" /> for more information.</para>
        </item>
      </list>
      <para>You can create your own custom event code by choosing code values above <see cref="F:System.Web.Management.WebEventCodes.WebExtendedBase" />. </para>
      <para>In the eventMappings health-monitoring configuration element, you can optionally specify an event-code range.  If the event code range is specified, the mapping only applies to the events that have an event code within that range; otherwise, it applies to all the event codes. The following configuration file excerpt shows the <see cref="T:System.Web.Management.EventLogWebEventProvider" /> configured to handle <see cref="T:System.Web.Management.WebFailureAuditEvent" /> events whose event codes belong to the audit category.</para>
      <code>&lt;healthMonitoring&gt;
  &lt;eventMappings&gt; 
    &lt;add name="Failure Audits" type=
      "System.Web.Management.WebFailureAuditEvent,System.Web, Version=2.0.3600.0,Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /&gt;
  &lt;/eventMappings&gt;

  &lt;rules&gt;
    &lt;add name="Failure Audits Default"
      eventName="Failure Audits"
      provider="EventLogProvider"
      profile="Default"
      minInterval="00:01:00" /&gt;
  &lt;/rules&gt;
&lt;/healthMonitoring&gt;</code>
      <para>You can create your own custom event code by choosing code values above <see cref="F:System.Web.Management.WebEventCodes.WebExtendedBase" />. </para>
    </remarks>
    <summary>
      <attribution license="cc4" from="Microsoft" modified="false" />
      <para>Defines the codes associated with the ASP.NET health monitoring events.</para>
    </summary>
  </Docs>
  <Members>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="public WebEventCodes ();" />
      <MemberType>Constructor</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <Parameters />
      <Docs>
        <summary>To be added.</summary>
        <remarks>To be added.</remarks>
      </Docs>
    </Member>
    <Member MemberName="ApplicationCodeBase">
      <MemberSignature Language="C#" Value="public const int ApplicationCodeBase = 1000;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>1000</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="F:System.Web.Management.WebEventCodes.ApplicationCodeBase" /> value represents the offset for major event codes associated with the <see cref="T:System.Web.Management.WebApplicationLifetimeEvent" /> type. All application codes are assigned values greater than <see cref="F:System.Web.Management.WebEventCodes.ApplicationCodeBase" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Identifies the offset for the ASP.NET health-monitoring application event codes. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="ApplicationCompilationEnd">
      <MemberSignature Language="C#" Value="public const int ApplicationCompilationEnd = 1004;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>1004</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="F:System.Web.Management.WebEventCodes.ApplicationCompilationEnd" /> value is a major code and its value is greater than the <see cref="F:System.Web.Management.WebEventCodes.ApplicationCodeBase" /> value. ASP.NET raises the related <see cref="T:System.Web.Management.WebApplicationLifetimeEvent" /> event when the compilation of the application ends. </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that the compilation of the application has finished. This field is constant. </para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="ApplicationCompilationStart">
      <MemberSignature Language="C#" Value="public const int ApplicationCompilationStart = 1003;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>1003</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="F:System.Web.Management.WebEventCodes.ApplicationCompilationStart" /> value is a major code and its value is greater than the <see cref="F:System.Web.Management.WebEventCodes.ApplicationCodeBase" /> value. ASP.NET raises the related <see cref="T:System.Web.Management.WebApplicationLifetimeEvent" /> event when the compilation of the application starts. </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that the compilation of the application has started. This field is constant. </para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="ApplicationDetailCodeBase">
      <MemberSignature Language="C#" Value="public const int ApplicationDetailCodeBase = 50000;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>50000</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="F:System.Web.Management.WebEventCodes.ApplicationDetailCodeBase" /> value represents the offset for the detail event code range associated with the <see cref="T:System.Web.Management.WebApplicationLifetimeEvent" /> type. All application detail codes are assigned values greater than <see cref="F:System.Web.Management.WebEventCodes.ApplicationDetailCodeBase" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Identifies the offset for the application detail event codes. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="ApplicationHeartbeat">
      <MemberSignature Language="C#" Value="public const int ApplicationHeartbeat = 1005;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>1005</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="F:System.Web.Management.WebEventCodes.ApplicationHeartbeat" /> is a major code and its value is greater than <see cref="F:System.Web.Management.WebEventCodes.ApplicationCodeBase" />. ASP.NET raises the related <see cref="T:System.Web.Management.WebHeartbeatEvent" /> event at a periodic interval, as defined by the configuration file.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that a heartbeat event occurred. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="ApplicationShutdown">
      <MemberSignature Language="C#" Value="public const int ApplicationShutdown = 1002;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>1002</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdown" /> is a major code and its value is greater than <see cref="F:System.Web.Management.WebEventCodes.ApplicationCodeBase" />. ASP.NET raises the related <see cref="T:System.Web.Management.WebApplicationLifetimeEvent" /> event when the application shuts down.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that an application has shut down. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="ApplicationShutdownBinDirChangeOrDirectoryRename">
      <MemberSignature Language="C#" Value="public const int ApplicationShutdownBinDirChangeOrDirectoryRename = 50007;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>50007</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownBinDirChangeOrDirectoryRename" /> is the detail code that specifies the causes of the shutdown. </para>
          <para>When a subdirectory in the application's Bin directory is changed or renamed, ASP.NET raises a <see cref="T:System.Web.Management.WebApplicationLifetimeEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdown" /> and a detail code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownBinDirChangeOrDirectoryRename" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating a subdirectory in the application's Bin directory was changed or renamed. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="ApplicationShutdownBrowsersDirChangeOrDirectoryRename">
      <MemberSignature Language="C#" Value="public const int ApplicationShutdownBrowsersDirChangeOrDirectoryRename = 50008;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>50008</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownBrowsersDirChangeOrDirectoryRename" /> is the detail code that specifies the cause of the shutdown.</para>
          <para>When a subdirectory in the Browsers application directory is changed or renamed, ASP.NET raises a <see cref="T:System.Web.Management.WebApplicationLifetimeEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdown" /> and a detail code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownBrowsersDirChangeOrDirectoryRename" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating a subdirectory in the Browsers application directory was changed or renamed. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="ApplicationShutdownChangeInGlobalAsax">
      <MemberSignature Language="C#" Value="public const int ApplicationShutdownChangeInGlobalAsax = 50003;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>50003</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownChangeInGlobalAsax" /> is the detail code that specifies the cause of the shutdown. </para>
          <para>When the Global.asax file is changed, ASP.NET raises a <see cref="T:System.Web.Management.WebApplicationLifetimeEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdown" /> and a detail code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownChangeInGlobalAsax" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that the Global.asax file has changed. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="ApplicationShutdownChangeInSecurityPolicyFile">
      <MemberSignature Language="C#" Value="public const int ApplicationShutdownChangeInSecurityPolicyFile = 50006;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>50006</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownChangeInSecurityPolicyFile" /> is the detail code that specifies the cause of the shutdown. </para>
          <para>When the security policy file is changed, ASP.NET raises a <see cref="T:System.Web.Management.WebApplicationLifetimeEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdown" /> and a detail code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownChangeInSecurityPolicyFile" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that the security policy file has changed. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="ApplicationShutdownCodeDirChangeOrDirectoryRename">
      <MemberSignature Language="C#" Value="public const int ApplicationShutdownCodeDirChangeOrDirectoryRename = 50009;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>50009</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownCodeDirChangeOrDirectoryRename" /> is the detail code that specifies the cause of the shutdown.</para>
          <para>When a subdirectory in the App_Code directory is changed or renamed, ASP.NET raises a <see cref="T:System.Web.Management.WebApplicationLifetimeEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdown" /> and a detail code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownCodeDirChangeOrDirectoryRename" />.  </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating a subdirectory in the App_Code directory was changed or renamed. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="ApplicationShutdownConfigurationChange">
      <MemberSignature Language="C#" Value="public const int ApplicationShutdownConfigurationChange = 50004;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>50004</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownConfigurationChange" /> is the detail code that specifies the cause of the shutdown. </para>
          <para>When the configuration file is changed, ASP.NET raises a <see cref="T:System.Web.Management.WebApplicationLifetimeEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdown" /> and a detail code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownConfigurationChange" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that the configuration file has changed. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="ApplicationShutdownHostingEnvironment">
      <MemberSignature Language="C#" Value="public const int ApplicationShutdownHostingEnvironment = 50002;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>50002</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownHostingEnvironment" /> is the detail code that specifies the cause of the shutdown. </para>
          <para>When the hosting environment is shutting down, ASP.NET raises a <see cref="T:System.Web.Management.WebApplicationLifetimeEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdown" /> and a detail code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownHostingEnvironment" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that the hosting environment is shutting down. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="ApplicationShutdownHttpRuntimeClose">
      <MemberSignature Language="C#" Value="public const int ApplicationShutdownHttpRuntimeClose = 50013;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>50013</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownHttpRuntimeClose" /> is the detail code that specifies the cause of the shutdown. </para>
          <para>When the ASP.NET run time is explicitly closed, ASP.NET raises a <see cref="T:System.Web.Management.WebApplicationLifetimeEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdown" /> and a detail code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownHttpRuntimeClose" />. </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that the ASP.NET run time was explicitly closed. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="ApplicationShutdownIdleTimeout">
      <MemberSignature Language="C#" Value="public const int ApplicationShutdownIdleTimeout = 50011;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>50011</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownIdleTimeout" /> is the detail code that specifies the cause of the shutdown. </para>
          <para>When the idle time-out is exceeded, ASP.NET raises a <see cref="T:System.Web.Management.WebApplicationLifetimeEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdown" /> and a detail code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownIdleTimeout" />. </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that the idle time-out was exceeded. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="ApplicationShutdownInitializationError">
      <MemberSignature Language="C#" Value="public const int ApplicationShutdownInitializationError = 50014;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>50014</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownInitializationError" /> is the detail code that specifies the cause of the shutdown.  </para>
          <para>When an application-initialization error occurs, ASP.NET raises a <see cref="T:System.Web.Management.WebApplicationLifetimeEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdown" /> and a detail code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownInitializationError" />. </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating an application-initialization error occurred. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="ApplicationShutdownMaxRecompilationsReached">
      <MemberSignature Language="C#" Value="public const int ApplicationShutdownMaxRecompilationsReached = 50015;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>50015</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownMaxRecompilationsReached" /> is the detail code that specifies the cause of the shutdown.  </para>
          <para>When the maximum number of recompilations is reached, ASP.NET raises a <see cref="T:System.Web.Management.WebApplicationLifetimeEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdown" /> and a detail code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownMaxRecompilationsReached" />. </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that the maximum number of recompilations was reached. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="ApplicationShutdownPhysicalApplicationPathChanged">
      <MemberSignature Language="C#" Value="public const int ApplicationShutdownPhysicalApplicationPathChanged = 50012;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>50012</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownPhysicalApplicationPathChanged" /> is the detail code that specifies the cause of the shutdown.</para>
          <para>When the physical path of the application is changed, ASP.NET raises a <see cref="T:System.Web.Management.WebApplicationLifetimeEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdown" /> and a detail code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownPhysicalApplicationPathChanged" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that the physical path of the application has changed. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="ApplicationShutdownResourcesDirChangeOrDirectoryRename">
      <MemberSignature Language="C#" Value="public const int ApplicationShutdownResourcesDirChangeOrDirectoryRename = 50010;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>50010</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownResourcesDirChangeOrDirectoryRename" /> is the detail code that specifies the cause of the shutdown.  </para>
          <para>When a subdirectory in the App_Resources directory is changed or renamed, ASP.NET raises a <see cref="T:System.Web.Management.WebApplicationLifetimeEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdown" /> and a detail code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownResourcesDirChangeOrDirectoryRename" />.  </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating a subdirectory in the App_Resources directory was changed or renamed. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="ApplicationShutdownUnknown">
      <MemberSignature Language="C#" Value="public const int ApplicationShutdownUnknown = 50001;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>50001</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownUnknown" /> is the detail code that specifies the causes of the shutdown.</para>
          <para>When the application shuts down for an unknown reason, ASP.NET raises a <see cref="T:System.Web.Management.WebApplicationLifetimeEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdown" /> and a detail code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownUnknown" />. </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that the application shutdown reason is unknown. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="ApplicationShutdownUnloadAppDomainCalled">
      <MemberSignature Language="C#" Value="public const int ApplicationShutdownUnloadAppDomainCalled = 50005;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>50005</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownUnloadAppDomainCalled" /> is the detail code that specifies the cause of the shutdown.</para>
          <para>When the application domain is explicitly unloaded, ASP.NET raises a <see cref="T:System.Web.Management.WebApplicationLifetimeEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdown" /> and a detail code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationShutdownUnloadAppDomainCalled" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that the application domain was explicitly unloaded. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="ApplicationStart">
      <MemberSignature Language="C#" Value="public const int ApplicationStart = 1001;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>1001</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.ApplicationStart" /> is the major code that refers to the start of an application. When the application starts, ASP.NET raises a <see cref="T:System.Web.Management.WebApplicationLifetimeEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.ApplicationStart" />. </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that an application has started. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="AuditCodeBase">
      <MemberSignature Language="C#" Value="public const int AuditCodeBase = 4000;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>4000</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="F:System.Web.Management.WebEventCodes.AuditCodeBase" /> value represents the offset for the major event code range associated with the <see cref="T:System.Web.Management.WebAuthenticationSuccessAuditEvent" />, <see cref="T:System.Web.Management.WebSuccessAuditEvent" />, <see cref="T:System.Web.Management.WebAuthenticationFailureAuditEvent" />, <see cref="T:System.Web.Management.WebFailureAuditEvent" />, and <see cref="T:System.Web.Management.WebViewStateFailureAuditEvent" /> types. </para>
          <para>All audit codes are assigned values greater than <see cref="F:System.Web.Management.WebEventCodes.AuditCodeBase" />. </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Identifies the offset for the ASP.NET health-monitoring audit event codes. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="AuditDetailCodeBase">
      <MemberSignature Language="C#" Value="public const int AuditDetailCodeBase = 50200;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>50200</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.AuditDetailCodeBase" /> represents the offset for the detail-event-code range associated with audit events. All audit detail codes are assigned values greater than <see cref="F:System.Web.Management.WebEventCodes.AuditDetailCodeBase" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Identifies the offset for the ASP.NET audit-detail event codes. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="AuditFileAuthorizationFailure">
      <MemberSignature Language="C#" Value="public const int AuditFileAuthorizationFailure = 4008;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>4008</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.AuditFileAuthorizationFailure" /> is the major code for the health event related to the access of a file for which authorization is not granted. When a file-authorization failure occurs, ASP.NET raises a <see cref="T:System.Web.Management.WebFailureAuditEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.AuditFileAuthorizationFailure" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that a file-authorization failure occurred during a Web request. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="AuditFileAuthorizationSuccess">
      <MemberSignature Language="C#" Value="public const int AuditFileAuthorizationSuccess = 4004;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>4004</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.AuditFileAuthorizationSuccess" /> is the major code for the health event related to the access of a file for which authorization is granted. When a file authorization is successful, ASP.NET raises a <see cref="T:System.Web.Management.WebSuccessAuditEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.AuditFileAuthorizationSuccess" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that a file-authorization success occurred during a Web request. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="AuditFormsAuthenticationFailure">
      <MemberSignature Language="C#" Value="public const int AuditFormsAuthenticationFailure = 4005;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>4005</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.AuditFormsAuthenticationFailure" /> is the major code for the health event related to user's authentication failure. When this event happens, ASP.NET raises a <see cref="T:System.Web.Management.WebAuthenticationFailureAuditEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.AuditFormsAuthenticationFailure" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating a form authentication failure occurred during a Web request. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="AuditFormsAuthenticationSuccess">
      <MemberSignature Language="C#" Value="public const int AuditFormsAuthenticationSuccess = 4001;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>4001</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="F:System.Web.Management.WebEventCodes.AuditFormsAuthenticationSuccess" /> is the major code for the health event related to a user's authentication success. When this event occurs, ASP.NET raises a <see cref="T:System.Web.Management.WebAuthenticationSuccessAuditEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.AuditFormsAuthenticationSuccess" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating a form-authentication success occurred during a Web request. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="AuditInvalidViewStateFailure">
      <MemberSignature Language="C#" Value="public const int AuditInvalidViewStateFailure = 4009;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>4009</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.AuditInvalidViewStateFailure" /> is the major code for the health event related to view-state verification failure. When this event occurs, ASP.NET raises a <see cref="T:System.Web.Management.WebViewStateFailureAuditEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.AuditInvalidViewStateFailure" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that the view-state verification failed. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="AuditMembershipAuthenticationFailure">
      <MemberSignature Language="C#" Value="public const int AuditMembershipAuthenticationFailure = 4006;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>4006</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="F:System.Web.Management.WebEventCodes.AuditMembershipAuthenticationFailure" /> is the major code for the health event related to a user's membership-authentication failure. When this event occurs, ASP.NET raises a <see cref="T:System.Web.Management.WebAuthenticationFailureAuditEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.AuditMembershipAuthenticationFailure" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that a membership-authentication failure occurred during a Web request. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="AuditMembershipAuthenticationSuccess">
      <MemberSignature Language="C#" Value="public const int AuditMembershipAuthenticationSuccess = 4002;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>4002</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.AuditMembershipAuthenticationSuccess" /> is the major code for the health event related to a user's membership-authentication success. When this event occurs, ASP.NET raises a <see cref="T:System.Web.Management.WebAuthenticationSuccessAuditEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.AuditMembershipAuthenticationSuccess" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that a membership-authentication success occurred during a Web request. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="AuditUnhandledAccessException">
      <MemberSignature Language="C#" Value="public const int AuditUnhandledAccessException = 4011;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>4011</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.AuditUnhandledAccessException" /> is the major code for the unhandled health event related to the access of a resource for which authorization is not granted. When this event occurs, ASP.NET raises a <see cref="T:System.Web.Management.WebFailureAuditEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.AuditUnhandledAccessException" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that an unhandled access exception occurred during a Web request. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="AuditUnhandledSecurityException">
      <MemberSignature Language="C#" Value="public const int AuditUnhandledSecurityException = 4010;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>4010</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.AuditUnhandledSecurityException" /> is the major code of the unhandled health event related to a security violation. When an unhandled security exception is thrown, ASP.NET raises a <see cref="T:System.Web.Management.WebFailureAuditEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.AuditUnhandledSecurityException" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that an unhandled security exception occurred during a Web request. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="AuditUrlAuthorizationFailure">
      <MemberSignature Language="C#" Value="public const int AuditUrlAuthorizationFailure = 4007;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>4007</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.AuditUrlAuthorizationFailure" /> is the major code for the health event related to the use of a URL for which authorization is not granted. When the URL-authorization failure occurs, ASP.NET raises a <see cref="T:System.Web.Management.WebFailureAuditEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.AuditUrlAuthorizationFailure" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that a URL-authorization failure occurred during a Web request. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="AuditUrlAuthorizationSuccess">
      <MemberSignature Language="C#" Value="public const int AuditUrlAuthorizationSuccess = 4003;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>4003</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.AuditUrlAuthorizationSuccess" /> is the major code for the health event related to the use of a URL for which authorization is granted. When a URL is successfully authorized, ASP.NET raises a <see cref="T:System.Web.Management.WebSuccessAuditEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.AuditUrlAuthorizationSuccess" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating a URL-authorization success occurred during a Web request. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="ErrorCodeBase">
      <MemberSignature Language="C#" Value="public const int ErrorCodeBase = 3000;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>3000</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="F:System.Web.Management.WebEventCodes.ErrorCodeBase" /> value represents the offset for the major event code range associated with the <see cref="T:System.Web.Management.WebRequestErrorEvent" /> and <see cref="T:System.Web.Management.WebErrorEvent" /> types. All error codes are assigned values greater than <see cref="F:System.Web.Management.WebEventCodes.ErrorCodeBase" />. </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Identifies the offset for the ASP.NET health-monitoring error event codes. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="ExpiredTicketFailure">
      <MemberSignature Language="C#" Value="public const int ExpiredTicketFailure = 50202;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>50202</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.ExpiredTicketFailure" /> is the detail code that specifies the cause of the user's authentication failure.</para>
          <para>When the user's authentication fails due to an expired ticket, ASP.NET raises a <see cref="T:System.Web.Management.WebAuthenticationFailureAuditEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.AuditFormsAuthenticationFailure" /> and a detail code of <see cref="F:System.Web.Management.WebEventCodes.ExpiredTicketFailure" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that the supplied ticket is expired. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="InvalidEventCode">
      <MemberSignature Language="C#" Value="public const int InvalidEventCode = -1;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>-1</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="F:System.Web.Management.WebEventCodes.InvalidEventCode" /> represents the use of a code value that is not allowed by the system. For instance, this can happen if you customize an ASP.NET health-monitoring event and use a code value that is already assigned by the system.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that the event code value is not allowed. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="InvalidTicketFailure">
      <MemberSignature Language="C#" Value="public const int InvalidTicketFailure = 50201;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>50201</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.InvalidTicketFailure" /> is the detail code that specifies the cause of the user's authentication failure.</para>
          <para>When the user's authentication fails due to an invalid ticket, ASP.NET raises a <see cref="T:System.Web.Management.WebAuthenticationFailureAuditEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.AuditFormsAuthenticationFailure" /> and a detail code of <see cref="F:System.Web.Management.WebEventCodes.InvalidTicketFailure" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that the supplied ticket is invalid. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="InvalidViewState">
      <MemberSignature Language="C#" Value="public const int InvalidViewState = 50204;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>50204</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.InvalidViewState" /> is the detail code that specifies the cause of the view-state failure.  </para>
          <para>When the view-state error occurs, ASP.NET raises a <see cref="T:System.Web.Management.WebViewStateFailureAuditEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.AuditInvalidViewStateFailure" /> and a detail code of <see cref="F:System.Web.Management.WebEventCodes.InvalidViewState" />.  </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that the supplied view state is invalid. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="InvalidViewStateMac">
      <MemberSignature Language="C#" Value="public const int InvalidViewStateMac = 50203;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>50203</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.InvalidViewStateMac" /> is the detail code that specifies the cause of the view-state failure.  </para>
          <para>When the supplied view state fails the integrity check, ASP.NET raises a <see cref="T:System.Web.Management.WebViewStateFailureAuditEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.AuditInvalidViewStateFailure" /> and a detail code of <see cref="F:System.Web.Management.WebEventCodes.InvalidViewStateMac" />.  </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that the supplied view state failed the integrity check. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="MiscCodeBase">
      <MemberSignature Language="C#" Value="public const int MiscCodeBase = 6000;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>6000</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="F:System.Web.Management.WebEventCodes.MiscCodeBase" /> value represents the offset for the major event code range associated with health events that have not been categorized. All miscellaneous codes are assigned values greater than <see cref="F:System.Web.Management.WebEventCodes.MiscCodeBase" />. </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Identifies the offset for the ASP.NET health-monitoring Web miscellaneous event codes. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="RequestCodeBase">
      <MemberSignature Language="C#" Value="public const int RequestCodeBase = 2000;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>2000</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="F:System.Web.Management.WebEventCodes.RequestCodeBase" /> value represents the offset for the major event code range associated with the <see cref="T:System.Web.Management.WebRequestEvent" /> type. All request codes are assigned values greater than <see cref="F:System.Web.Management.WebEventCodes.RequestCodeBase" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Identifies the offset for the ASP.NET health-monitoring Web-request event codes. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="RequestTransactionAbort">
      <MemberSignature Language="C#" Value="public const int RequestTransactionAbort = 2002;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>2002</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.RequestTransactionAbort" /> is the major code that refers to a Web-request abnormal termination. When a Web request aborts, ASP.NET raises a <see cref="T:System.Web.Management.WebRequestEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.RequestTransactionAbort" />. </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that the Web request was aborted. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="RequestTransactionComplete">
      <MemberSignature Language="C#" Value="public const int RequestTransactionComplete = 2001;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>2001</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.RequestTransactionComplete" /> is the major code that refers to a Web request normal termination. When the Web request completes normally, ASP.NET raises a <see cref="T:System.Web.Management.WebRequestEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.RequestTransactionComplete" />. </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that the Web request was completed. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="RuntimeErrorPostTooLarge">
      <MemberSignature Language="C#" Value="public const int RuntimeErrorPostTooLarge = 3004;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>3004</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.RuntimeErrorPostTooLarge" /> is the major code that refers to a data posting whose size exceeds the allowed limits. When a form posts data that exceeds the allowed limits, ASP.NET raises a <see cref="T:System.Web.Management.WebRequestErrorEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.RuntimeErrorPostTooLarge" />. </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that the size of the posted information exceeded the allowed limits. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="RuntimeErrorRequestAbort">
      <MemberSignature Language="C#" Value="public const int RuntimeErrorRequestAbort = 3001;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>3001</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.RuntimeErrorRequestAbort" /> is the major code that refers to the abnormal termination of the Web request. When the Web request aborts, ASP.NET raises a <see cref="T:System.Web.Management.WebRequestErrorEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.RuntimeErrorRequestAbort" />. </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that the Web request has been aborted.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="RuntimeErrorUnhandledException">
      <MemberSignature Language="C#" Value="public const int RuntimeErrorUnhandledException = 3005;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>3005</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.RuntimeErrorUnhandledException" /> is the major code that refers to the occurrence of an exception that is not handled by ASP.NET. When the exception occurs, ASP.NET raises a <see cref="T:System.Web.Management.WebRequestErrorEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.RuntimeErrorUnhandledException" />. </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating an unhandled exception occurred. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="RuntimeErrorValidationFailure">
      <MemberSignature Language="C#" Value="public const int RuntimeErrorValidationFailure = 3003;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>3003</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.RuntimeErrorValidationFailure" /> is the major code that refers to the occurrence of a validation exception that is not handled by ASP.NET. When this exception occurs, ASP.NET raises a <see cref="T:System.Web.Management.WebRequestErrorEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.RuntimeErrorValidationFailure" />. </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that a validation error occurred. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="RuntimeErrorViewStateFailure">
      <MemberSignature Language="C#" Value="public const int RuntimeErrorViewStateFailure = 3002;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>3002</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.RuntimeErrorViewStateFailure" /> is the major code that refers to a view-state failure. When this happens, ASP.NET raises a <see cref="T:System.Web.Management.WebRequestErrorEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.RuntimeErrorViewStateFailure" />. </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that a view-state failure occurred. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="SqlProviderEventsDropped">
      <MemberSignature Language="C#" Value="public const int SqlProviderEventsDropped = 50301;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>50301</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>When the notification occurs after the one during which events have been dropped, a special warning row is written to the SQL server. This row is written before all other events in the notification, and is not counted in the total number of events as far as the configured flush size is concerned.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that the SQL provider dropped events. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="StateServerConnectionError">
      <MemberSignature Language="C#" Value="public const int StateServerConnectionError = 50016;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>50016</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>When a connection error occurs while communicating with the state server, ASP.NET raises a <see cref="T:System.Web.Management.WebErrorEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.WebErrorOtherError" /> and detail code of <see cref="F:System.Web.Management.WebEventCodes.StateServerConnectionError" />.</para>
          <para>The <see cref="F:System.Web.Management.WebEventCodes.StateServerConnectionError" /> is a detail code and its value is greater than the <see cref="F:System.Web.Management.WebEventCodes.ApplicationCodeBase" />. </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that an error occurred while communicating with the state server. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="UndefinedEventCode">
      <MemberSignature Language="C#" Value="public const int UndefinedEventCode = 0;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>0</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.UndefinedEventCode" /> represents the use of a major code value that is not defined by the system. </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that the major event code value is not defined. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="UndefinedEventDetailCode">
      <MemberSignature Language="C#" Value="public const int UndefinedEventDetailCode = 0;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>0</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.UndefinedEventCode" /> represents the use of a detail code value that is not defined by the system. </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that the detail event code value is not defined. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="WebErrorCompilationError">
      <MemberSignature Language="C#" Value="public const int WebErrorCompilationError = 3007;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>3007</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.WebErrorCompilationError" /> is the major code that refers to an error that happened during the application compilation phase. When this error occurs, ASP.NET raises a <see cref="T:System.Web.Management.WebErrorEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.WebErrorCompilationError" />. </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Indicates that a compilation error occurred.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="WebErrorConfigurationError">
      <MemberSignature Language="C#" Value="public const int WebErrorConfigurationError = 3008;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>3008</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.WebErrorConfigurationError" /> is the major code that refers to an error that happened during the application-configuring phase. When this error occurs, ASP.NET raises a <see cref="T:System.Web.Management.WebErrorEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.WebErrorConfigurationError" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Indicates that a configuration error occurred. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="WebErrorObjectStateFormatterDeserializationError">
      <MemberSignature Language="C#" Value="public const int WebErrorObjectStateFormatterDeserializationError = 3011;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>3011</MemberValue>
      <Docs>
        <remarks>To be added.</remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that there was an error during the deserialization of the type or value of an object. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="WebErrorOtherError">
      <MemberSignature Language="C#" Value="public const int WebErrorOtherError = 3009;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>3009</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.WebErrorOtherError" /> is the major code for an unclassified error. When this error occurs, ASP.NET raises a <see cref="T:System.Web.Management.WebErrorEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.WebErrorOtherError" />. </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that an unclassified error occurred. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="WebErrorParserError">
      <MemberSignature Language="C#" Value="public const int WebErrorParserError = 3006;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>3006</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.WebErrorParserError" /> is the major code that refers to an error that happened during the application-parsing phase. When this error occurs, ASP.NET raises a <see cref="T:System.Web.Management.WebErrorEvent" /> with a major code of <see cref="F:System.Web.Management.WebEventCodes.WebErrorParserError" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating a parser error occurred.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="WebErrorPropertyDeserializationError">
      <MemberSignature Language="C#" Value="public const int WebErrorPropertyDeserializationError = 3010;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>3010</MemberValue>
      <Docs>
        <remarks>To be added.</remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code indicating that there was an error during the deserialization of a property. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="WebEventDetailCodeBase">
      <MemberSignature Language="C#" Value="public const int WebEventDetailCodeBase = 50300;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>50300</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="F:System.Web.Management.WebEventCodes.WebEventDetailCodeBase" /> value represents the offset for the detail-event code range associated with the <see cref="T:System.Web.Management.WebApplicationLifetimeEvent" /> type. All application detail codes are assigned values greater than <see cref="F:System.Web.Management.WebEventCodes.ApplicationDetailCodeBase" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Identifies the offset for the ASP.NET health-monitoring Web-detail event codes. </para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="WebEventProviderInformation">
      <MemberSignature Language="C#" Value="public const int WebEventProviderInformation = 6001;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>6001</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>
            <see cref="F:System.Web.Management.WebEventCodes.WebEventProviderInformation" /> is the major code used by providers to store nonstandard health event information. Its value is greater than <see cref="F:System.Web.Management.WebEventCodes.MiscCodeBase" />.</para>
          <para>For example, if ASP.NET health events are dropped during buffering, the <see cref="T:System.Web.Management.SimpleMailWebEventProvider" /> adds a warning to the top of the messages without using the <see cref="F:System.Web.Management.WebEventCodes.WebEventProviderInformation" />.But  the only way for the <see cref="T:System.Web.Management.SqlWebEventProvider" /> to write this warning is to create a record in the database. Because every record in the database needs an event ID, the provider uses the <see cref="F:System.Web.Management.WebEventCodes.WebEventProviderInformation" /> as its major code and <see cref="F:System.Web.Management.WebEventCodes.SqlProviderEventsDropped" /> as the detail code to create this ID.</para>
          <block subset="none" type="note">
            <para>As you can see from the above discussion, the <see cref="F:System.Web.Management.WebEventCodes.WebEventProviderInformation" /> is not associated with any ASP.NET health event. </para>
          </block>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Represents the event code used by providers to record nonstandard information about an event. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="WebExtendedBase">
      <MemberSignature Language="C#" Value="public const int WebExtendedBase = 100000;" />
      <MemberType>Field</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <MemberValue>100000</MemberValue>
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>If you create your own custom event, you must use an event code with a value greater than <see cref="F:System.Web.Management.WebEventCodes.WebExtendedBase" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Identifies the offset for the custom event codes. This field is constant.</para>
        </summary>
      </Docs>
    </Member>
  </Members>
</Type>