-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMicrosoft.Practices.EnterpriseLibrary.ExceptionHandling.xml
2269 lines (2266 loc) · 146 KB
/
Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.xml
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
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Practices.EnterpriseLibrary.ExceptionHandling</name>
</assembly>
<members>
<member name="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.AddExceptionHandlingSettingsCommandTitle">
<summary>
Looks up a localized string similar to Add Exception Handling Settings.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.CustomHandlerDataAddCommand">
<summary>
Looks up a localized string similar to Custom Handler (using type picker).
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.CustomHandlerDataDescription">
<summary>
Looks up a localized string similar to An Exception Handler implemented as a custom class added to Enterprise Library..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.CustomHandlerDataDisplayName">
<summary>
Looks up a localized string similar to Custom Exception Handler.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.CustomHandlerDataNameDescription">
<summary>
Looks up a localized string similar to The name of the Custom Exception Handler..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.CustomHandlerDataNameDisplayName">
<summary>
Looks up a localized string similar to Name.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.CustomHandlerDataTypeNameDescription">
<summary>
Looks up a localized string similar to The fully qualified type name of the Custom Exception Handler..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.CustomHandlerDataTypeNameDisplayName">
<summary>
Looks up a localized string similar to Type.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ExceptionHandlerDataDescription">
<summary>
Looks up a localized string similar to Handles an exception passed to the block and performs an action on it, such as wrapping or logging it,
and then passes it on to the next exception handler or returns it to the caller..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ExceptionHandlerDataDisplayName">
<summary>
Looks up a localized string similar to Exception Handler.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ExceptionHandlerDataNameDescription">
<summary>
Looks up a localized string similar to The name of the Exception Handler..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ExceptionHandlerDataNameDisplayName">
<summary>
Looks up a localized string similar to Name.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ExceptionHandlerDataTypeNameDescription">
<summary>
Looks up a localized string similar to The fully qualified type name of the Exception Handler..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ExceptionHandlerDataTypeNameDisplayName">
<summary>
Looks up a localized string similar to Type.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ExceptionHandlingSettingsDescription">
<summary>
Looks up a localized string similar to Configuration settings for the Exception Handling Application Block..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ExceptionHandlingSettingsDisplayName">
<summary>
Looks up a localized string similar to Exception Handling Settings.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ExceptionHandlingSettingsExceptionPoliciesDescription">
<summary>
Looks up a localized string similar to Configuration settings for all Exception Handling Policies..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ExceptionHandlingSettingsExceptionPoliciesDisplayName">
<summary>
Looks up a localized string similar to Policies.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ExceptionPolicyDataDescription">
<summary>
Looks up a localized string similar to A policy defines the exceptions it will handle, and the set of Exception Handlers that it will execute when
one of the specified exceptions is passed to the block..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ExceptionPolicyDataDisplayName">
<summary>
Looks up a localized string similar to Policy.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ExceptionPolicyDataExceptionTypesDescription">
<summary>
Looks up a localized string similar to The Exception types configured for the Exception Handling Block..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ExceptionPolicyDataExceptionTypesDisplayName">
<summary>
Looks up a localized string similar to Exception Types.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ExceptionPolicyDataNameDescription">
<summary>
Looks up a localized string similar to The name of the Exception Handling Policy..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ExceptionPolicyDataNameDisplayName">
<summary>
Looks up a localized string similar to Name.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ExceptionTypeDataDescription">
<summary>
Looks up a localized string similar to Each Exception Type configured for a policy can specify a series of Exception Handlers that will
execute when an exception of the specified type is sent to the block for handling by this policy..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ExceptionTypeDataDisplayName">
<summary>
Looks up a localized string similar to Exception Type.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ExceptionTypeDataExceptionHandlersDescription">
<summary>
Looks up a localized string similar to The Exception Handlers configured for this Exception type..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ExceptionTypeDataExceptionHandlersDisplayName">
<summary>
Looks up a localized string similar to Handlers.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ExceptionTypeDataNameDescription">
<summary>
Looks up a localized string similar to The name of the Exception..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ExceptionTypeDataNameDisplayName">
<summary>
Looks up a localized string similar to Name.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ExceptionTypeDataPostHandlingActionDescription">
<summary>
Looks up a localized string similar to The action the Exception Handling Block will take after executing all of the handlers for this Exception type.
None means that the block will return false to the application allowing it to resume execution.
NotifyRethrow means that the block will return true to the application, which should re-throw the original exception.
ThrowNewException means that the block will throw the exception that exists after the final handler runs.
However, if you use the overload of the HandleException method that takes [rest of string was truncated]";.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ExceptionTypeDataPostHandlingActionDisplayName">
<summary>
Looks up a localized string similar to Post handling action.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ExceptionTypeDataTypeNameDescription">
<summary>
Looks up a localized string similar to The fully qualified type name of the Exception..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ExceptionTypeDataTypeNameDisplayName">
<summary>
Looks up a localized string similar to Type name.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ReplaceHandlerDataDescription">
<summary>
Looks up a localized string similar to Replaces the exception sent to the block with another exception type.
The message can be specified for the replacement exception type..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ReplaceHandlerDataDisplayName">
<summary>
Looks up a localized string similar to Replace Handler.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ReplaceHandlerDataExceptionMessageDescription">
<summary>
Looks up a localized string similar to The message for the replacement exception..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ReplaceHandlerDataExceptionMessageDisplayName">
<summary>
Looks up a localized string similar to Exception Message.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ReplaceHandlerDataExceptionMessageResourceNameDescription">
<summary>
Looks up a localized string similar to The key in an external resource file for the localized string to use as the message for the replacement exception. .
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ReplaceHandlerDataExceptionMessageResourceNameDisplayName">
<summary>
Looks up a localized string similar to Message Resource Name.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ReplaceHandlerDataExceptionMessageResourceTypeDescription">
<summary>
Looks up a localized string similar to The type of the external resource file containing the localized string to use as the message for the replacement exception. .
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ReplaceHandlerDataExceptionMessageResourceTypeDisplayName">
<summary>
Looks up a localized string similar to Message Resource Type.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ReplaceHandlerDataNameDescription">
<summary>
Looks up a localized string similar to The name of the Replace Exception Handler..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ReplaceHandlerDataNameDisplayName">
<summary>
Looks up a localized string similar to Name.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ReplaceHandlerDataReplaceExceptionTypeNameDescription">
<summary>
Looks up a localized string similar to The fully qualified type name of the replacement exception..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ReplaceHandlerDataReplaceExceptionTypeNameDisplayName">
<summary>
Looks up a localized string similar to Replace Exception Type .
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ReplaceHandlerDataTypeNameDescription">
<summary>
Looks up a localized string similar to The fully qualified type name of the Replace Exception Handler..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.ReplaceHandlerDataTypeNameDisplayName">
<summary>
Looks up a localized string similar to Type.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.WrapHandlerDataDescription">
<summary>
Looks up a localized string similar to Wraps the exception sent to the block as the inner exception of a new exception type.
The message can be specified for the wrapping exception type..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.WrapHandlerDataDisplayName">
<summary>
Looks up a localized string similar to Wrap Handler.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.WrapHandlerDataExceptionMessageDescription">
<summary>
Looks up a localized string similar to The message for the wrapping exception..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.WrapHandlerDataExceptionMessageDisplayName">
<summary>
Looks up a localized string similar to Exception Message.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.WrapHandlerDataExceptionMessageResourceNameDescription">
<summary>
Looks up a localized string similar to The key in an external resource file for the localized string to use as the message for the wrapping exception. .
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.WrapHandlerDataExceptionMessageResourceNameDisplayName">
<summary>
Looks up a localized string similar to Message Resource Name.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.WrapHandlerDataExceptionMessageResourceTypeDescription">
<summary>
Looks up a localized string similar to The type of the external resource file containing the localized string to use as the message for the wrapping exception. .
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.WrapHandlerDataExceptionMessageResourceTypeDisplayName">
<summary>
Looks up a localized string similar to Message Resource Type.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.WrapHandlerDataNameDescription">
<summary>
Looks up a localized string similar to The name of the Wrap Exception Handler..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.WrapHandlerDataNameDisplayName">
<summary>
Looks up a localized string similar to Name.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.WrapHandlerDataTypeNameDescription">
<summary>
Looks up a localized string similar to The fully qualified type name of the Wrap Exception Handler..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.WrapHandlerDataTypeNameDisplayName">
<summary>
Looks up a localized string similar to Type.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.WrapHandlerDataWrapExceptionTypeNameDescription">
<summary>
Looks up a localized string similar to The fully qualified type name of the wrapping exception..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.DesignResources.WrapHandlerDataWrapExceptionTypeNameDisplayName">
<summary>
Looks up a localized string similar to Wrap Exception Type.
</summary>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.ExceptionHandlingConfigurationSourceBuilderExtensions">
<summary>
<see cref="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.IConfigurationSourceBuilder"/> extensions to support creation of exception handling configuration sections.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.ExceptionHandlingConfigurationSourceBuilderExtensions.ConfigureExceptionHandling(Microsoft.Practices.EnterpriseLibrary.Common.Configuration.IConfigurationSourceBuilder)">
<summary>
Main entry point to configuration a <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionHandlingSettings"/> section.
</summary>
<param name="configurationSourceBuilder">The builder interface to extend.</param>
<returns></returns>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationGivenPolicyWithName">
<summary>
Defines an exception policy with a given name.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationGivenPolicyWithName.GivenPolicyWithName(System.String)">
<summary>
Defines new policy with a given name.
</summary>
<param name="name">Name of policy</param>
<returns></returns>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationForExceptionType">
<summary>
Fluent interface extensions for configuring an exception type on a <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.ExceptionPolicy"/>
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationForExceptionType.ForExceptionType(System.Type)">
<summary>
The <see cref="T:System.Exception"/> handled under the <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.ExceptionPolicy"/>.
</summary>
<param name="exceptionType">The type of <see cref="T:System.Exception"/> handled for this policy.</param>
<returns></returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationForExceptionType.ForExceptionType``1">
<summary>
The <see cref="T:System.Exception"/> handled under the <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.ExceptionPolicy"/>.
</summary>
<typeparam name="T">The type of <see cref="T:System.Exception"/> handled for this policy.</typeparam>
<returns></returns>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationAddExceptionHandlers">
<summary>
This interface provides the extension point for handlers that provide a fluent configuration interface.
</summary>
<remarks>
Handlers providing a fluent interface should provide extension methods to this interface.
<example>
public static class ReplaceWithHandlerLoggingConfigurationSourceBuilderExtensions
{
public static IExceptionConfigurationReplaceWithProvider ReplaceWith(this IExceptionConfigurationAddExceptionHandlers context, Type replacingExceptionType)
{ }
}
</example>
The context implementer offers additional interfaces that are useful in continuing the configuration of Exception Handling (<see cref="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationForExceptionTypeOrPostHandling"/>
or in adding your custom handler information to the currently building exception type (<see cref="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.IExceptionHandlerExtension"/>). In lieu of casting to these
interfaces directly, consider using the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.ExceptionHandlerConfigurationExtension"/> as a base class for your custom handler builder.
</remarks>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationThenDoPostHandlingAction">
<summary>
This interface supports the fluent configuration of the Exception Handling Application Block.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationThenDoPostHandlingAction.ThenDoNothing">
<summary>
End the current exception handling chain by doing nothing more.
</summary>
<returns></returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationThenDoPostHandlingAction.ThenNotifyRethrow">
<summary>
End the current exception handling chain by notifying the caller that an exception should be rethrown.
</summary>
<returns></returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationThenDoPostHandlingAction.ThenThrowNewException">
<summary>
End the current exception handling chain by throwing a new exception.
</summary>
<returns></returns>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationForExceptionTypeOrPostHandling">
<summary>
This interface supports the configuration of the Exception Handling Application Block.
</summary>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.IExceptionHandlerExtension">
<summary>
Used to provide context to extensions of the Exception Handling fluent configuration interface.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.IExceptionHandlerExtension.CurrentExceptionTypeData">
<summary>
Retrieves data about the currently built up ExceptionTypeData. Exception handler configuration extensions will use this to
add their handler information to the exception.
</summary>
<seealso cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.ReplaceHandler"/>
<seealso cref="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.ReplaceWithHandlerLoggingConfigurationSourceBuilderExtensions"/>
<seealso cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.WrapHandler"/>
<seealso cref="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.WrapWithHandlerLoggingConfigurationSourceBuilderExtensions"/>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.CustomHandlerData">
<summary>
Configuration object for Custom Providers.
</summary>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionHandlerData">
<summary>
Represents the configuration for an <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.IExceptionHandler"/>.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionHandlerData.#ctor">
<summary>
Initializes an instance of a <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionHandlerData"/> class.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionHandlerData.#ctor(System.Type)">
<summary>
Initializes an instance of an <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionHandlerData"/> class with a name and an <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.IExceptionHandler"/> type.
</summary>
<param name="type">
The configured <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.IExceptionHandler"/> type.
</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionHandlerData.#ctor(System.String,System.Type)">
<summary>
Initializes an instance of an <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionHandlerData"/> class with a name and an <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.IExceptionHandler"/> type.
</summary>
<param name="name">
The name of the configured <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.IExceptionHandler"/>.
</param>
<param name="type">
The configured <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.IExceptionHandler"/> type.
</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionHandlerData.BuildExceptionHandler">
<summary>
Builds the exception handler represented by this configuration object.
</summary>
<returns>An <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.IExceptionHandler"/>.</returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.CustomHandlerData.#ctor">
<summary>
Initializes with default values.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.CustomHandlerData.#ctor(System.String,System.Type)">
<summary>
Initializes with name and provider type.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.CustomHandlerData.#ctor(System.String,System.String)">
<summary>
Initializes with name and provider type.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.CustomHandlerData.SetAttributeValue(System.String,System.String)">
<summary>
Sets the attribute value for a key.
</summary>
<param name="key">The attribute name.</param>
<param name="value">The attribute value.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.CustomHandlerData.Unmerge(System.Configuration.ConfigurationElement,System.Configuration.ConfigurationElement,System.Configuration.ConfigurationSaveMode)">
<summary>
Modifies the <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.CustomHandlerData"/> object to remove all values that should not be saved.
</summary>
<param name="sourceElement">A <see cref="T:System.Configuration.ConfigurationElement"/> object at the current level containing a merged view of the properties.</param>
<param name="parentElement">A parent <see cref="T:System.Configuration.ConfigurationElement"/> object or <see langword="null"/> if this is the top level.</param>
<param name="saveMode">One of the <see cref="T:System.Configuration.ConfigurationSaveMode"/> values.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.CustomHandlerData.Reset(System.Configuration.ConfigurationElement)">
<summary>
Resets the internal state of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.CustomHandlerData"/> object,
including the locks and the properties collection.
</summary>
<param name="parentElement">The parent element.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.CustomHandlerData.IsModified">
<summary>
Indicates whether this configuration element has been modified since it was last
saved or loaded when implemented in a derived class.
</summary>
<returns><see langword="true"/> if the element has been modified; otherwise, <see langword="false"/>. </returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.CustomHandlerData.OnDeserializeUnrecognizedAttribute(System.String,System.String)">
<summary>
Called when an unknown attribute is encountered while deserializing the <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.CustomHandlerData"/> object.
</summary>
<param name="name">The name of the unrecognized attribute.</param>
<param name="value">The value of the unrecognized attribute.</param>
<returns><see langword="true"/> if the processing of the element should continue; otherwise, <see langword="false"/>.</returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.CustomHandlerData.Microsoft#Practices#EnterpriseLibrary#Common#Configuration#IHelperAssistedCustomConfigurationData{Microsoft#Practices#EnterpriseLibrary#ExceptionHandling#Configuration#CustomHandlerData}#BaseGetPropertyValue(System.Configuration.ConfigurationProperty)">
<summary>Invokes the inherited behavior.</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.CustomHandlerData.Microsoft#Practices#EnterpriseLibrary#Common#Configuration#IHelperAssistedCustomConfigurationData{Microsoft#Practices#EnterpriseLibrary#ExceptionHandling#Configuration#CustomHandlerData}#BaseSetPropertyValue(System.Configuration.ConfigurationProperty,System.Object)">
<summary>Invokes the inherited behavior.</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.CustomHandlerData.Microsoft#Practices#EnterpriseLibrary#Common#Configuration#IHelperAssistedCustomConfigurationData{Microsoft#Practices#EnterpriseLibrary#ExceptionHandling#Configuration#CustomHandlerData}#BaseUnmerge(System.Configuration.ConfigurationElement,System.Configuration.ConfigurationElement,System.Configuration.ConfigurationSaveMode)">
<summary>Invokes the inherited behavior.</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.CustomHandlerData.Microsoft#Practices#EnterpriseLibrary#Common#Configuration#IHelperAssistedCustomConfigurationData{Microsoft#Practices#EnterpriseLibrary#ExceptionHandling#Configuration#CustomHandlerData}#BaseReset(System.Configuration.ConfigurationElement)">
<summary>Invokes the inherited behavior.</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.CustomHandlerData.Microsoft#Practices#EnterpriseLibrary#Common#Configuration#IHelperAssistedCustomConfigurationData{Microsoft#Practices#EnterpriseLibrary#ExceptionHandling#Configuration#CustomHandlerData}#BaseIsModified">
<summary>Invokes the inherited behavior.</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.CustomHandlerData.BuildExceptionHandler">
<summary>
Builds the exception handler represented by this configuration object.
</summary>
<returns>An <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.IExceptionHandler"/>.</returns>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.CustomHandlerData.TypeName">
<summary>
Gets or sets the fully qualified name of the <see cref="T:System.Type"/> the element is the configuration for.
</summary>
<value>
the fully qualified name of the <see cref="T:System.Type"/> the element is the configuration for.
</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.CustomHandlerData.Attributes">
<summary>
Gets the custom configuration attributes.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.CustomHandlerData.Properties">
<summary>
Gets a <see cref="T:System.Configuration.ConfigurationPropertyCollection"/> of the properties that are defined for
this configuration element when implemented in a derived class.
</summary>
<value>
A <see cref="T:System.Configuration.ConfigurationPropertyCollection"/> of the properties that are defined for this
configuration element when implemented in a derived class.
</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.CustomHandlerData.Microsoft#Practices#EnterpriseLibrary#Common#Configuration#IHelperAssistedCustomConfigurationData{Microsoft#Practices#EnterpriseLibrary#ExceptionHandling#Configuration#CustomHandlerData}#Helper">
<summary>
Gets the helper.
</summary>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.CustomHandlerLoggingConfigurationBuilderExtensions">
<summary>
Defines configuration extensions to <see cref="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationAddExceptionHandlers"/> for <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.ReplaceHandler"/>
configuration.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.CustomHandlerLoggingConfigurationBuilderExtensions.HandleCustom(Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationAddExceptionHandlers,System.Type)">
<summary>
Handle the <see cref="T:System.Exception"/> with a custom exception handler.
</summary>
<param name="context">Interface to extend to add custom handler options.</param>
<param name="customHandlerType">The <see cref="T:System.Type"/> of the custom handler.
<remarks>This must derive from <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.IExceptionHandler"/></remarks></param>
<returns></returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.CustomHandlerLoggingConfigurationBuilderExtensions.HandleCustom``1(Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationAddExceptionHandlers)">
<summary>
Handle the <see cref="T:System.Exception"/> with a custom exception handler.
</summary>
<param name="context">Interface to extend to add custom handler options.</param>
<typeparam name="T">The Type of the custom handler.</typeparam>
<returns></returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.CustomHandlerLoggingConfigurationBuilderExtensions.HandleCustom(Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationAddExceptionHandlers,System.Type,System.Collections.Specialized.NameValueCollection)">
<summary>
Handle the <see cref="T:System.Exception"/> with a custom exception handler.
</summary>
<param name="context">Interface to extend to add custom handler options.</param>
<param name="customHandlerType">The <see cref="T:System.Type"/> of the custom handler. </param>
<param name="customHandlerSettings">Name-Value collection of attributes the custom handler can use to initialize itself.</param>
<returns></returns>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.ExceptionHandlerConfigurationExtension">
<summary>
Provides a base extensible class for handler configuration extensions. This class eases the handling
of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationAddExceptionHandlers"/> that is the typical entry point
for most exception handler's fluent configuration interface.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.ExceptionHandlerConfigurationExtension.#ctor(Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationAddExceptionHandlers)">
<summary>
Initializes a new instance of the ExceptoinHandlerConfigurationExtensions
</summary>
<param name="context">The context for configuration.</param>
<remarks>
This constructor expects to the find the implementor of <paramref name="context"/> provide
the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationForExceptionTypeOrPostHandling"/> and <see cref="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.IExceptionHandlerExtension"/> interfaces.
</remarks>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.ExceptionHandlerConfigurationExtension.Context">
<summary>
The context for the extending handler in the fluent interface. The extension interface
is expected to return this context to enable continuation of configuring ExceptionHandling.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.ExceptionHandlerConfigurationExtension.CurrentExceptionTypeData">
<summary>
The current exception type being built in the fluent interface. Inheritors genereally should
add their <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionHandlerData"/> to this during construction.
</summary>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionHandlingSettings">
<summary>
Represents the Exception Handling Application Block configuration section in a configuration file.
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionHandlingSettings.SectionName">
<summary>
Gets the configuration section name for the library.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionHandlingSettings.GetExceptionHandlingSettings(Microsoft.Practices.EnterpriseLibrary.Common.Configuration.IConfigurationSource)">
<summary>
Gets the <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionHandlingSettings"/> section in the configuration source.
</summary>
<param name="configurationSource">The <see cref="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.IConfigurationSource"/> to get the section from.</param>
<returns>The exception handling section.</returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionHandlingSettings.#ctor">
<summary>
Initializes a new instance of an <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionHandlingSettings"/> class.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionHandlingSettings.BuildExceptionManager">
<summary>
Builds a <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.ExceptionManager"/> based on the configuration.
</summary>
<returns>An <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.ExceptionManager"/>.</returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionHandlingSettings.BuildExceptionPolicy(System.String)">
<summary>
Builds an <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.ExceptionPolicyDefinition"/> based on the configuration.
</summary>
<param name="policyName">The policy name.</param>
<returns>The policy instance.</returns>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionHandlingSettings.ExceptionPolicies">
<summary>
Gets a collection of <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionPolicyData"/> objects.
</summary>
<value>
A collection of <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionPolicyData"/> objects.
</value>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionPolicyData">
<summary>
Represents the configuration for an <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.ExceptionPolicy"/>.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionPolicyData.#ctor">
<summary>
Creates a new instance of ExceptionPolicyData.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionPolicyData.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionPolicyData"/> class with a name.
</summary>
<param name="name">
The name of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionPolicyData"/>.
</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionPolicyData.BuildExceptionPolicy">
<summary>
Builds an <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.ExceptionPolicyDefinition"/> based on the configuration.
</summary>
<returns>The policy instance.</returns>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionPolicyData.ExceptionTypes">
<summary>
Gets a collection of <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionTypeData"/> objects.
</summary>
<value>
A collection of <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionTypeData"/> objects.
</value>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionTypeData">
<summary>
Represents the configuration for an <see cref="T:System.Exception"/>
that will be handled by an exception policy.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionTypeData.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionTypeData"/> class.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionTypeData.#ctor(System.String,System.Type,Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.PostHandlingAction)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionTypeData"/> class with a name, the <see cref="T:System.Exception"/> type and a <see cref="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionTypeData.PostHandlingAction"/>.
</summary>
<param name="name">The name of the configured exception.</param>
<param name="type">The <see cref="T:System.Exception"/> type.</param>
<param name="postHandlingAction">One of the <see cref="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionTypeData.PostHandlingAction"/> values that specifies the action that should occur after the exception is handled.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionTypeData.#ctor(System.String,System.String,Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.PostHandlingAction)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionTypeData"/> class with a name, the fully qualified type name of the <see cref="T:System.Exception"/> and a <see cref="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionTypeData.PostHandlingAction"/>.
</summary>
<param name="name">The name of the configured exception.</param>
<param name="typeName">The fully qualified type name of the <see cref="T:System.Exception"/> type.</param>
<param name="postHandlingAction">One of the <see cref="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionTypeData.PostHandlingAction"/> values that specifies the action that should occur after the exception is handled.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionTypeData.BuildExceptionType">
<summary>
Builds an <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.ExceptionPolicyEntry"/> based on the configuration.
</summary>
<returns>The policy entry.</returns>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionTypeData.Name">
<summary>
Gets or sets the name of the element.
</summary>
<value>
The name of the element.
</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionTypeData.Type">
<summary>
Gets or sets the <see cref="T:System.Exception"/> type.
</summary>
<value>
The <see cref="T:System.Exception"/> type
</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionTypeData.TypeName">
<summary>
Gets or sets the fully qualified type name of the <see cref="T:System.Exception"/> type.
</summary>
<value>
The fully qualified type name of the <see cref="T:System.Exception"/> type.
</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionTypeData.PostHandlingAction">
<summary>
Gets or sets the <see cref="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionTypeData.PostHandlingAction"/> for the exception.
</summary>
<value>
One of the <see cref="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionTypeData.PostHandlingAction"/> values.
</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionTypeData.ExceptionHandlers">
<summary>
Gets a collection of <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionHandlerData"/> objects.
</summary>
<value>
A collection of <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionHandlerData"/> objects.
</value>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationReplaceWithProvider">
<summary>
This interface supports the fluent configuration of <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.ReplaceHandler"/>
</summary>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationWithMessage">
<summary>
Defines interface for adding messages when configuring a <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.ReplaceHandler"/> for an exception.
<seealso cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ReplaceHandlerData"/>
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationWithMessage.UsingMessage(System.String)">
<summary>
Use the provided message as part of the new exception.
</summary>
<param name="message">Message to use when providing an alternative exception, typically through wrapping or replacing.</param>
<returns></returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationWithMessage.UsingResourceMessage(System.Type,System.String)">
<summary>
Use the message in the specified resource file and name.
</summary>
<param name="resourceType">The type from the assembly with the resource to use for a message</param>
<param name="resourceName">The name of the resource.</param>
<returns></returns>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationWrapWithProvider">
<summary>
This interface supports the fluent configuration of <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.WrapHandler"/>
</summary>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ReplaceHandlerData">
<summary>
Represents the configuration data for a <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.ReplaceHandler"/>.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ReplaceHandlerData.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ReplaceHandlerData"/> class.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ReplaceHandlerData.#ctor(System.String,System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ReplaceHandlerData"/> class with a name, exception message, and replace exception type name.
</summary>
<param name="name">
The name of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ReplaceHandlerData"/>.
</param>
<param name="exceptionMessage">
The exception message replacement.
</param>
<param name="replaceExceptionTypeName">
The fully qualified assembly name the type of the replacement exception.
</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ReplaceHandlerData.BuildExceptionHandler">
<summary>
Builds the exception handler represented by this configuration object.
</summary>
<returns>An <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.IExceptionHandler"/>.</returns>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ReplaceHandlerData.ExceptionMessage">
<summary>
Gets or sets the message for the replacement exception.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ReplaceHandlerData.ExceptionMessageResourceName">
<summary/>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ReplaceHandlerData.ExceptionMessageResourceType">
<summary/>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ReplaceHandlerData.ReplaceExceptionType">
<summary>
Gets or sets the type of the replacement exception.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ReplaceHandlerData.ReplaceExceptionTypeName">
<summary>
Gets or sets the fully qualified type name of the replacement exception.
</summary>
<value>
The fully qualified type name of the replacement exception.
</value>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.ReplaceWithHandlerLoggingConfigurationSourceBuilderExtensions">
<summary>
Defines configuration extensions to <see cref="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationAddExceptionHandlers"/> for <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.ReplaceHandler"/>
configuration.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.ReplaceWithHandlerLoggingConfigurationSourceBuilderExtensions.ReplaceWith``1(Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationAddExceptionHandlers)">
<summary>
Replace exception with new exception type.
</summary>
<typeparam name="T">Replacement <see cref="T:System.Exception"/> type.</typeparam>
<returns></returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.ReplaceWithHandlerLoggingConfigurationSourceBuilderExtensions.ReplaceWith(Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationAddExceptionHandlers,System.Type)">
<summary>
Replace exception with new exception type.
</summary>
<param name="context">Interface to extend to add ReplaceWith options.</param>
<param name="replacingExceptionType">Replacement <see cref="T:System.Exception"/> type.</param>
<returns></returns>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.WrapHandlerData">
<summary>
Represents the configuration data for a <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.WrapHandler"/>.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.WrapHandlerData.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.WrapHandlerData"/> class.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.WrapHandlerData.#ctor(System.String,System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.WrapHandlerData"/> class with a name, an exception message, and the fully qualified assembly name of the type of the wrapping exception.
</summary>
<param name="name">
The name of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.WrapHandlerData"/>.
</param>
<param name="exceptionMessage">
The exception message replacement.
</param>
<param name="wrapExceptionTypeName">
The fully qualified assembly name of type of the wrapping exception
</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.WrapHandlerData.BuildExceptionHandler">
<summary>
Builds the exception handler represented by this configuration object.
</summary>
<returns>An <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.IExceptionHandler"/>.</returns>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.WrapHandlerData.ExceptionMessage">
<summary>
Gets or sets the message for the replacement exception.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.WrapHandlerData.ExceptionMessageResourceType">
<summary/>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.WrapHandlerData.ExceptionMessageResourceName">
<summary/>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.WrapHandlerData.WrapExceptionType">
<summary>
Gets or sets the type of the replacement exception.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.WrapHandlerData.WrapExceptionTypeName">
<summary>
Gets or sets the fully qualified type name of the replacement exception.
</summary>
<value>
The fully qualified type name of the replacement exception.
</value>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.WrapWithHandlerLoggingConfigurationSourceBuilderExtensions">
<summary>
Provides <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.WrapHandlerData"/> configuration extensions to the ExceptionHandling fluent configuration interface.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.WrapWithHandlerLoggingConfigurationSourceBuilderExtensions.WrapWith``1(Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationAddExceptionHandlers)">
<summary>
Wrap exception with the new exception type.
</summary>
<typeparam name="T">Type of <see cref="T:System.Exception"/> to wrap existing exception with.</typeparam>
<returns></returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.WrapWithHandlerLoggingConfigurationSourceBuilderExtensions.WrapWith(Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Fluent.IExceptionConfigurationAddExceptionHandlers,System.Type)">
<summary>
Wrap exception with the new exception type.
</summary>
<param name="context">The extension context for this handler extension.</param>
<param name="wrappingExceptionType">Type of <see cref="T:System.Exception"/>to wrap existing exception with.</param>
<returns></returns>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.ExceptionFormatter">
<summary>
Represents the base class from which all implementations of exception formatters must derive. The formatter provides functionality for formatting <see cref="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.ExceptionFormatter.Exception"/> objects.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.ExceptionFormatter.#ctor(System.Exception,System.Guid)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.ExceptionFormatter"/> class with an <see cref="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.ExceptionFormatter.Exception"/> to format.
</summary>
<param name="exception">The <see cref="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.ExceptionFormatter.Exception"/> object to format.</param>
<param name="handlingInstanceId">The id of the handling chain.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.ExceptionFormatter.Format">
<summary>
Formats the <see cref="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.ExceptionFormatter.Exception"/> into the underlying stream.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.ExceptionFormatter.WriteException(System.Exception,System.Exception)">
<summary>
Formats the exception and all nested inner exceptions.
</summary>
<param name="exceptionToFormat">The exception to format.</param>
<param name="outerException">The outer exception. This