-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMicrosoft.Practices.EnterpriseLibrary.PolicyInjection.xml
4095 lines (4091 loc) · 269 KB
/
Microsoft.Practices.EnterpriseLibrary.PolicyInjection.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.PolicyInjection</name>
</assembly>
<members>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Unity.TransientPolicyBuildUpExtension">
<summary>
Container extension that supports supplying additional, transient policies when building up an object
through a container.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Unity.TransientPolicyBuildUpExtension.Initialize">
<summary>
Initializes the container with this extension's functionality.
</summary>
<remarks>
This extension does not permfom any initialization.
</remarks>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.Unity.TransientPolicyBuildUpExtension.BuildUp(System.Type,System.Object,System.String,Microsoft.Practices.Unity.InjectionMember[])">
<summary>
Runs an existing object through the container and performs injection on it.
</summary>
<param name="t">The <see cref="T:System.Type"/> of object to perform injection on.</param>
<param name="existing">The instance to build up.</param>
<param name="name">The name to use when looking up the type mappings and other configurations.</param>
<param name="injectionMembers">The providers of transient policies.</param>
<returns>The resulting object. By default, this will be the object supplied in the <paramref name="existing"/>
parameter. However, container extensions may add things such as automatic proxy creation, which would cause this method to
return a different object that is still type-compatible with the t parameter.</returns>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Common.Utility.ServiceLocatorExtensions">
<summary>
Provides extension methods on <see cref="T:Microsoft.Practices.ServiceLocation.IServiceLocator"/> for convenience.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Utility.ServiceLocatorExtensions.Dispose(Microsoft.Practices.ServiceLocation.IServiceLocator)">
<summary>
Disposes <paramref name="locator"/> if it implements the <see cref="T:System.IDisposable"/> interface.
</summary>
<param name="locator">The service locator to dispose, if possible.</param>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ArgumentValidationException">
<summary>
The exception that is thrown by the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ValidationCallHandler"/> if validation fails.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ArgumentValidationException.#ctor(Microsoft.Practices.EnterpriseLibrary.Validation.ValidationResults,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ArgumentValidationException"/> class, storing the validation
results and the name of the parameter that failed.
</summary>
<param name="validationResults">The <see cref="P:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ArgumentValidationException.ValidationResults"/> returned from the Validation Application Block.</param>
<param name="paramName">The parameter that failed validation.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ArgumentValidationException.ToString">
<summary>
Creates and returns a string representation of the current exception.
</summary>
<returns>A string representation of the current exception.</returns>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ArgumentValidationException.ValidationResults">
<summary>
Gets the validation results for the failure.
</summary>
<value>The validation results for the failure.</value>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.CategoryFormatter">
<summary>
Represents a formatter object that allows for the replacement of tokens in
a log handler category string.
</summary>
<remarks>This class supports the following replacements:
<list>
<item><term>{method}</term><description>The target method name.</description></item>
<item><term>{type}</term><description>The target method's implementing type.</description></item>
<item><term>{namespace}</term><description>The namespace that contains the target's type.</description></item>
<item><term>{assembly}</term><description>The assembly that contains the target's type.</description></item>
</list></remarks>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.CategoryFormatter.#ctor(System.Reflection.MethodBase)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.CategoryFormatter"/> class by using information from the
given method.
</summary>
<param name="method">The method used to generate the category replacements.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.CategoryFormatter.FormatCategory(System.String)">
<summary>
Performs the formatting operation by replacing tokens in the template.
</summary>
<param name="template">The template string to replace the tokens in.</param>
<returns>The template, with tokens replaced.</returns>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.PolicyInjection.ExceptionCallHandler">
<summary>
Represents an <see cref="T:Microsoft.Practices.Unity.InterceptionExtension.ICallHandler"/> that runs any exceptions returned from the
target through the Exception Handling Application Block.
</summary>
<remarks>If the exception policy is configured to swallow exceptions,
do not configure this call handler on a method that has a non-void return value,
because the handler doesn't know which value to return if the exception is swallowed.
</remarks>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.PolicyInjection.ExceptionCallHandler.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.PolicyInjection.ExceptionCallHandler"/> class that processses exceptions
by using the exception policy with the given name.
</summary>
<param name="policyName">The name of the exception policy to use.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.PolicyInjection.ExceptionCallHandler.#ctor(System.String,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.PolicyInjection.ExceptionCallHandler"/> class that processses exceptions
by using the exception policy with the given name.
</summary>
<param name="policyName">The name of the exception policy to use.</param>
<param name="order">The order in which the handler will be executed.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.PolicyInjection.ExceptionCallHandler.Invoke(Microsoft.Practices.Unity.InterceptionExtension.IMethodInvocation,Microsoft.Practices.Unity.InterceptionExtension.GetNextHandlerDelegate)">
<summary>
Processes the method call.
</summary>
<remarks>This handler does nothing before the call. If an exception is
returned, it runs the exception through the Exception Handling Application Block.</remarks>
<param name="input">The <see cref="T:Microsoft.Practices.Unity.InterceptionExtension.IMethodInvocation"/> that has information about the call.</param>
<param name="getNext">The delegate to call to get the next handler in the pipeline.</param>
<returns>Return value from the target, or the (possibly changed) exceptions.</returns>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.PolicyInjection.ExceptionCallHandler.ExceptionPolicyName">
<summary>
Gets the name of the exception policy used by this handler.
</summary>
<value>The name of the exception policy.</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.PolicyInjection.ExceptionCallHandler.Order">
<summary>
Gets or sets the order in which the handler will be executed.
</summary>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.PolicyInjection.ExceptionCallHandlerAttribute">
<summary>
Applies the <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.PolicyInjection.ExceptionCallHandler"/> to the target.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.PolicyInjection.ExceptionCallHandlerAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.PolicyInjection.ExceptionCallHandlerAttribute"/> class using the given
exception policy name.
</summary>
<remarks>When using this attribute, the exception policy is always read from
the default configuration.</remarks>
<param name="policyName">The name of the exception policy name from configuration.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.PolicyInjection.ExceptionCallHandlerAttribute.CreateHandler(Microsoft.Practices.Unity.IUnityContainer)">
<summary>
Derived classes implement this method. When called, it
creates a new call handler as specified in the attribute
configuration.
</summary>
<returns>A new call handler object.</returns>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.PolicyInjection.ExceptionCallHandlerAttribute.PolicyName">
<summary>
Get or sets the name of the exception policy that is used by the handler.
</summary>
<value>The name of the exception policy.</value>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandler">
<summary>
An <see cref="T:Microsoft.Practices.Unity.InterceptionExtension.ICallHandler"/> that will log information using the
Logging Application Block before and/or after the
call to the target completes.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandler.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandler"/> class with default settings.
</summary>
<remarks>See the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandlerDefaults"/> class for the default values.</remarks>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandler.#ctor(System.Int32,System.Boolean,System.Boolean,System.String,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandler"/> class that writes entries using the given logging settings.
</summary>
<param name="eventId">The event ID to include in log entries.</param>
<param name="logBeforeCall"><see langword="true"/> to log information before calling the target; otherwise, <see langword="false"/>.</param>
<param name="logAfterCall"><see langword="true"/> to log information after calling the target; otherwise, <see langword="false"/>.</param>
<param name="beforeMessage">The message to include in an entry logged before the call.</param>
<param name="afterMessage">The message to include in an entry logged after the call.</param>
<param name="includeParameters"><see langword="true"/> to include the parameter values in the log entry; otherwise, <see langword="false"/>.</param>
<param name="includeCallStack"><see langword="true"/> to include the current call stack in the log entry; otherwise, <see langword="false"/>.</param>
<param name="includeCallTime"><see langword="true"/> to include the time to execute the target in the log entry; otherwise, <see langword="false"/>.</param>
<param name="priority">The priority of the log entry.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandler.#ctor(System.Int32,System.Boolean,System.Boolean,System.String,System.String,System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandler"/> class that writes entries using the given logging settings.
</summary>
<param name="eventId">The event ID to include in log entries.</param>
<param name="logBeforeCall"><see langword="true"/> to log information before calling the target; otherwise, <see langword="false"/>.</param>
<param name="logAfterCall"><see langword="true"/> to log information after calling the target; otherwise, <see langword="false"/>.</param>
<param name="beforeMessage">The message to include in an entry logged before the call.</param>
<param name="afterMessage">The message to include in an entry logged after the call.</param>
<param name="includeParameters"><see langword="true"/> to include the parameter values in the log entry; otherwise, <see langword="false"/>.</param>
<param name="includeCallStack"><see langword="true"/> to include the current call stack in the log entry; otherwise, <see langword="false"/>.</param>
<param name="includeCallTime"><see langword="true"/> to include the time to execute the target in the log entry; otherwise, <see langword="false"/>.</param>
<param name="priority">The priority of the log entry.</param>
<param name="order">The order in which the handler will be executed.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandler.Invoke(Microsoft.Practices.Unity.InterceptionExtension.IMethodInvocation,Microsoft.Practices.Unity.InterceptionExtension.GetNextHandlerDelegate)">
<summary>
Executes the call handler.
</summary>
<param name="input"><see cref="T:Microsoft.Practices.Unity.InterceptionExtension.IMethodInvocation"/> containing the information about the current call.</param>
<param name="getNext">delegate to get the next handler in the pipeline.</param>
<returns>Return value from the target method.</returns>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandler.EventId">
<summary>
Event ID to include in log entry
</summary>
<value>event id</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandler.LogBeforeCall">
<summary>
Should there be a log entry before calling the target?
</summary>
<value>true = yes, false = no</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandler.LogAfterCall">
<summary>
Should there be a log entry after calling the target?
</summary>
<value>true = yes, false = no</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandler.BeforeMessage">
<summary>
Message to include in a pre-call log entry.
</summary>
<value>The message</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandler.AfterMessage">
<summary>
Message to include in a post-call log entry.
</summary>
<value>the message.</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandler.Categories">
<summary>
Gets the collection of categories to place the log entries into.
</summary>
<remarks>The category strings can include replacement tokens. See
the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.CategoryFormatter"/> class for the list of tokens.</remarks>
<value>The list of category strings.</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandler.IncludeParameters">
<summary>
Should the log entry include the parameters to the call?
</summary>
<value>true = yes, false = no</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandler.IncludeCallStack">
<summary>
Should the log entry include the call stack?
</summary>
<remarks>Logging the call stack requires full trust code access security permissions.</remarks>
<value>true = yes, false = no</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandler.IncludeCallTime">
<summary>
Should the log entry include the time to execute the target?
</summary>
<value>true = yes, false = no</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandler.Priority">
<summary>
Priority for the log entry.
</summary>
<value>priority</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandler.Severity">
<summary>
Severity to log at.
</summary>
<value><see cref="T:System.Diagnostics.TraceEventType"/> giving the severity.</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandler.Order">
<summary>
Gets or sets the order in which the handler will be executed
</summary>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandlerDefaults">
<summary>
Specifies the default values for the various <see cref="T:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandler"/> settings.
</summary>
<remarks>The default values are:
<list type="table">
<item><term>EventId</term><description>0</description></item>
<item><term>LogBeforeCall</term><description>true</description></item>
<item><term>LogAfterCall</term><description>true</description></item>
<item><term>BeforeMessage</term><description></description></item>
<item><term>AfterMessage</term><description></description></item>
<item><term>Title</term><description>Call Logging</description></item>
<item><term>IncludeParameters</term><description>true</description></item>
<item><term>IncludeCallStack</term><description>false</description></item>
<item><term>IncludeCallTime</term><description>true</description></item>
<item><term>Priority</term><description>-1</description></item>
<item><term>Severity</term><description><see cref="T:System.Diagnostics.TraceEventType"/>.Information</description></item>
</list></remarks>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandlerDefaults.Order">
<summary>
Default Order = 0
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandlerDefaults.EventId">
<summary>
Default EventId = 0
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandlerDefaults.LogBeforeCall">
<summary>
Default option to log before the call = true
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandlerDefaults.LogAfterCall">
<summary>
Default option to log after the call = true
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandlerDefaults.IncludeParameters">
<summary>
Default option to include parameter values = true
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandlerDefaults.IncludeCallStack">
<summary>
Default option to include the call stack = false
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandlerDefaults.IncludeCallTime">
<summary>
Default option to include total time to call target = true
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandlerDefaults.Priority">
<summary>
Default priority = -1
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandlerDefaults.Severity">
<summary>
Default severity = <see cref="T:System.Diagnostics.TraceEventType"/>.Information
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandlerDefaults.BeforeMessage">
<summary>
Default message in before-call logs = nothing
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandlerDefaults.AfterMessage">
<summary>
Default message in after-call logs = nothing
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandlerDefaults.Title">
<summary>
Default log entry title = "Call Logging" (localizable)
</summary>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandlerAttribute">
<summary>
Applies the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandler"/> to the target type, property, or method.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandlerAttribute.CreateHandler(Microsoft.Practices.Unity.IUnityContainer)">
<summary>
Creates the log handler for the target using the configured values.
</summary>
<returns>the created <see cref="T:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandler"/>.</returns>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandlerAttribute.Categories">
<summary>
Gets or sets the collection of categories to place the log entries into.
</summary>
<remarks>The category strings can include replacement tokens. See
the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.CategoryFormatter"/> class for the list of tokens.</remarks>
<value>The list of category strings.</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandlerAttribute.EventId">
<summary>
Event ID to include in log entry.
</summary>
<value>event id</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandlerAttribute.LogBeforeCall">
<summary>
Should there be a log entry before calling the target?
</summary>
<value>true = yes, false = no</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandlerAttribute.LogAfterCall">
<summary>
Should there be a log entry after calling the target?
</summary>
<value>true = yes, false = no</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandlerAttribute.BeforeMessage">
<summary>
Message to include in a pre-call log entry.
</summary>
<value>The message</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandlerAttribute.AfterMessage">
<summary>
Message to include in a post-call log entry.
</summary>
<value>the message.</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandlerAttribute.IncludeParameters">
<summary>
Should the log entry include the parameters to the call?
</summary>
<value>true = yes, false = no</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandlerAttribute.IncludeCallStack">
<summary>
Should the log entry include the call stack?
</summary>
<remarks>Logging the call stack requires full trust code access security permissions.</remarks>
<value>true = yes, false = no</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandlerAttribute.IncludeCallTime">
<summary>
Should the log entry include the time to execute the target?
</summary>
<value>true = yes, false = no</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandlerAttribute.Priority">
<summary>
Priority for the log entry.
</summary>
<value>priority</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandlerAttribute.Severity">
<summary>
Severity to log at.
</summary>
<value><see cref="T:System.Diagnostics.TraceEventType"/> giving the severity.</value>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandler">
<summary>
An <see cref="T:Microsoft.Practices.Unity.InterceptionExtension.ICallHandler"/> that updates performance counters when calling the target.
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandler.TotalInstanceName">
<summary>
Instance name for the "total" instance
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandler.NumberOfCallsCounterName">
<summary>
Number of calls counter name
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandler.CallsPerSecondCounterName">
<summary>
Calls per second counter name
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandler.AverageCallDurationCounterName">
<summary>
Average call duration counter name
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandler.AverageCallDurationBaseCounterName">
<summary>
Average call duration base counter name
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandler.TotalExceptionsCounterName">
<summary>
Total exceptions counter name
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandler.ExceptionsPerSecondCounterName">
<summary>
Exceptions per second counter name
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandler.#ctor(System.String,System.String)">
<summary>
Creates a <see cref="T:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandler"/> using the given category
and instance name.
</summary>
<remarks>See the <see cref="T:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandlerDefaults"/> for a list
of the default values for each property.</remarks>
<param name="category">Performance counter category to update. This counter category
must be installed separately or the handler will fail.</param>
<param name="counterInstanceName">Counter instance name. This may include replacement
tokens. See the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Common.MethodInvocationFormatter"/> class for a list of the tokens.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandler.#ctor(System.String,System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Creates a <see cref="T:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandler"/> using the given settings.
</summary>
<param name="category">Performance counter category to update. This counter category
must be installed separately or the handler will fail.</param>
<param name="instanceName">Counter instance name. This may include replacement
tokens. See the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Common.MethodInvocationFormatter"/> class for a list of the tokens.</param>
<param name="useTotalCounter">Should a "Total" instance be updated?</param>
<param name="incrementNumberOfCalls">Should the number of calls counter be updated?</param>
<param name="incrementCallsPerSecond">Should the "calls / second" counter be updated?</param>
<param name="incrementAverageCallDuration">Should the "average seconds / call" counter be updated?</param>
<param name="incrementTotalExceptions">Should the "# of exceptions" counter be updated?</param>
<param name="incrementExceptionsPerSecond">Should the "# exceptions / second" counter be updated?</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandler.#ctor(System.String,System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Int32)">
<summary>
Creates a <see cref="T:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandler"/> using the given settings.
</summary>
<param name="category">Performance counter category to update. This counter category
must be installed separately or the handler will fail.</param>
<param name="instanceName">Counter instance name. This may include replacement
tokens. See the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Common.MethodInvocationFormatter"/> class for a list of the tokens.</param>
<param name="useTotalCounter">Should a "Total" instance be updated?</param>
<param name="incrementNumberOfCalls">Should the number of calls counter be updated?</param>
<param name="incrementCallsPerSecond">Should the "calls / second" counter be updated?</param>
<param name="incrementAverageCallDuration">Should the "average seconds / call" counter be updated?</param>
<param name="incrementTotalExceptions">Should the "# of exceptions" counter be updated?</param>
<param name="incrementExceptionsPerSecond">Should the "# exceptions / second" counter be updated?</param>
<param name="handlerOrder">Order of the handler.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandler.Invoke(Microsoft.Practices.Unity.InterceptionExtension.IMethodInvocation,Microsoft.Practices.Unity.InterceptionExtension.GetNextHandlerDelegate)">
<summary>
Executes the handler. Increments the various counter according to configuration.
</summary>
<param name="input"><see cref="T:Microsoft.Practices.Unity.InterceptionExtension.IMethodInvocation"/> describing the current call.</param>
<param name="getNext">delegate to call to get the next handler in the pipeline.</param>
<returns>Return value from target method.</returns>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandler.UseTotalCounter">
<summary>
Should a "Total" instance be updated?
</summary>
<value>true or false</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandler.IncrementNumberOfCalls">
<summary>
Should the number of calls counter be updated?
</summary>
<value>true or false</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandler.Category">
<summary>
Performance counter category to update.
</summary>
<value>category name</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandler.InstanceName">
<summary>
Counter instance name. This may include replacement
tokens. See the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Common.MethodInvocationFormatter"/> class for a list of the tokens.
</summary>
<value>instance name.</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandler.IncrementCallsPerSecond">
<summary>
Should the "calls / second" counter be updated?
</summary>
<value>true or false</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandler.IncrementAverageCallDuration">
<summary>
Should the "average seconds / call" counter be updated?
</summary>
<value>true or false</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandler.IncrementTotalExceptions">
<summary>
Should the "# of exceptions" counter be updated?
</summary>
<value>true or false</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandler.IncrementExceptionsPerSecond">
<summary>
Should the "# exceptions / second" counter be updated?
</summary>
<value>true or false</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandler.Order">
<summary>
Gets or sets the order in which the handler will be executed
</summary>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandlerDefaults">
<summary>
Defaults for the <see cref="T:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandlerDefaults"/> class.
</summary>
<remarks>The default values are:
<list>
<item><term>UseTotalCounter</term><description>true</description></item>
<item><term>IncrementNumberOfCalls</term><description>true</description>></item>
<item><term>IncrementCallsPerSecond</term><description>true</description></item>
<item><term>IncrementAverageCallDuration</term><description>true</description></item>
<item><term>IncrementTotalExceptions</term><description>false</description></item>
<item><term>IncrementExceptionsPerSecond</term><description>false</description></item>
</list>
</remarks>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandlerDefaults.UseTotalCounter">
<summary>
Use total counter = true
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandlerDefaults.IncrementNumberOfCalls">
<summary>
Increment number of calls counter = true
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandlerDefaults.IncrementCallsPerSecond">
<summary>
Increment calls per second counter = true
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandlerDefaults.IncrementAverageCallDuration">
<summary>
Increment seconds / call counter = true
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandlerDefaults.IncrementTotalExceptions">
<summary>
Increment total number of exceptions counter = false
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandlerDefaults.IncrementExceptionsPerSecond">
<summary>
Increment exceptions per second counter = false
</summary>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandlerAttribute">
<summary>
An attribute that applies the <see cref="T:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandler"/> to the target.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandlerAttribute.#ctor(System.String,System.String)">
<summary>
Creates a new <see cref="T:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandlerAttribute"/> with the given
category and instance names. All other properties start at the default values.
</summary>
<remarks>See the <see cref="T:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandlerDefaults"/> class for
the default values.</remarks>
<param name="category">Performance counter category name.</param>
<param name="instanceName">Performance counter instance name. This may contain substitution
tokens; see <see cref="T:Microsoft.Practices.EnterpriseLibrary.Common.MethodInvocationFormatter"/> for the list of tokens.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandlerAttribute.CreateHandler(Microsoft.Practices.Unity.IUnityContainer)">
<summary>
Derived classes implement this method. When called, it
creates a new call handler as specified in the attribute
configuration.
</summary>
<returns>A new call handler object.</returns>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandlerAttribute.CategoryName">
<summary>
Performance counter category to update.
</summary>
<value>category name</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandlerAttribute.InstanceName">
<summary>
Counter instance name. This may include replacement
tokens. See the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Common.MethodInvocationFormatter"/> class for a list of the tokens.
</summary>
<value>instance name.</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandlerAttribute.IncrementAverageCallDuration">
<summary>
Should the "average seconds / call" counter be updated?
</summary>
<value>true or false</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandlerAttribute.IncrementCallsPerSecond">
<summary>
Should the "calls / second" counter be updated?
</summary>
<value>true or false</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandlerAttribute.IncrementExceptionsPerSecond">
<summary>
Should the "# exceptions / second" counter be updated?
</summary>
<value>true or false</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandlerAttribute.IncrementNumberOfCalls">
<summary>
Should the number of calls counter be updated?
</summary>
<value>true or false</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandlerAttribute.IncrementTotalExceptions">
<summary>
Should the "# of exceptions" counter be updated?
</summary>
<value>true or false</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.CallHandlers.PerformanceCounterCallHandlerAttribute.UseTotalCounter">
<summary>
Should a "Total" instance be updated?
</summary>
<value>true or false</value>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.TraceLogEntry">
<summary>
A <see cref="T:Microsoft.Practices.EnterpriseLibrary.Logging.LogEntry"/> class that contains the extra information logged
by the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.LogCallHandler"/>.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.TraceLogEntry.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.TraceLogEntry"/> class.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.TraceLogEntry.#ctor(System.Object,System.String,System.Int32,System.Int32,System.Diagnostics.TraceEventType,System.String,System.Collections.Generic.IDictionary{System.String,System.Object},System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.TraceLogEntry"/> class with the specified values.
</summary>
<param name="message">The log message.</param>
<param name="category">The log category.</param>
<param name="priority">The log priority.</param>
<param name="eventId">The log event id.</param>
<param name="severity">The log severity.</param>
<param name="title">The log title.</param>
<param name="properties">Extra properties. This contains the parameters to the call.</param>
<param name="typeName">The name of type that implements the method being called.</param>
<param name="methodName">The name of the method that is called.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.TraceLogEntry.#ctor(System.Object,System.Collections.Generic.ICollection{System.String},System.Int32,System.Int32,System.Diagnostics.TraceEventType,System.String,System.Collections.Generic.IDictionary{System.String,System.Object},System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.TraceLogEntry"/> class with the specified values.
</summary>
<param name="message">The log message.</param>
<param name="categories">The categories of the log entry.</param>
<param name="priority">The log priority.</param>
<param name="eventId">The log event id.</param>
<param name="severity">The log severity.</param>
<param name="title">The log title.</param>
<param name="properties">Extra properties. This contains the parameters to the call.</param>
<param name="typeName">The name of type that implements the method being called.</param>
<param name="methodName">The name of the method that is called.</param>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.TraceLogEntry.TypeName">
<summary>
Type name
</summary>
<value>type name</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.TraceLogEntry.MethodName">
<summary>
Method name
</summary>
<value>method name</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.TraceLogEntry.ReturnValue">
<summary>
Return value from the call.
</summary>
<value>return value</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.TraceLogEntry.CallStack">
<summary>
The call stack from the current call.
</summary>
<value>call stack string.</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.TraceLogEntry.Exception">
<summary>
Exception thrown from the target.
</summary>
<value>If exception was thrown, this is the exception object. Null if no exception thrown.</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.TraceLogEntry.CallTime">
<summary>
Total time to call the target.
</summary>
<value>null if not logged, else the elapsed time.</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.TraceLogEntry.ElapsedTime">
<summary>
This is to support WMI instrumentation by returning
the actual <see cref="P:Microsoft.Practices.EnterpriseLibrary.Logging.PolicyInjection.TraceLogEntry.CallTime"/>
</summary>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ValidationCallHandler">
<summary>
An <see cref="T:Microsoft.Practices.Unity.InterceptionExtension.ICallHandler"/> that runs validation of a call's parameters
before calling the target.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ValidationCallHandler.#ctor(System.String,Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.SpecificationSource)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ValidationCallHandler"/> class that uses the given
rule set and <see cref="T:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.SpecificationSource"/> to get the validation rules.
</summary>
<param name="ruleSet">The validation rule set specified in the configuration.</param>
<param name="specificationSource">A value that indicates whether the validation should come from the configuration, from attributes, or from both sources.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ValidationCallHandler.#ctor(System.String,Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.SpecificationSource,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ValidationCallHandler"/> class that uses the given
rule set, <see cref="T:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.SpecificationSource"/> to get the validation rules, and handler order.
</summary>
<param name="ruleSet">The validation rule set specified in the configuration.</param>
<param name="specificationSource">A value that indicates whether the validation should come from the configuration, from attributes, or from both sources.</param>
<param name="handlerOrder">The order of the handler.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ValidationCallHandler.#ctor(System.String,Microsoft.Practices.EnterpriseLibrary.Validation.ValidatorFactory,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ValidationCallHandler"/> class that uses the given
rule set, <see cref="P:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ValidationCallHandler.ValidatorFactory"/> to get the validation rules.
</summary>
<param name="ruleSet">The validation rule set specified in the configuration.</param>
<param name="validatorFactory">The <see cref="P:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ValidationCallHandler.ValidatorFactory"/> to use when building the validator for the
type of a parameter, or <see langword="null"/> if no such validator is desired.</param>
<param name="handlerOrder">The order of the handler.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ValidationCallHandler.Invoke(Microsoft.Practices.Unity.InterceptionExtension.IMethodInvocation,Microsoft.Practices.Unity.InterceptionExtension.GetNextHandlerDelegate)">
<summary>
Runs the call handler. This does validation on the parameters, and if validation
passes it calls the handler. It throws <see cref="T:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ArgumentValidationException"/>
if validation fails.
</summary>
<param name="input">The <see cref="T:Microsoft.Practices.Unity.InterceptionExtension.IMethodInvocation"/> that contains the details of the current call.</param>
<param name="getNext">The delegate to call to get the next handler in the pipeline.</param>
<returns>The eturn value from the target.</returns>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ValidationCallHandler.Order">
<summary>
Gets or sets the order in which the handler will be executed.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ValidationCallHandler.RuleSet">
<summary>
Gets the rule set for this call handler.
</summary>
<value>The rule set name.</value>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ValidationCallHandler.ValidatorFactory">
<summary>
Gets the factory used to build validators.
</summary>
<value>The validator factory.</value>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.SpecificationSource">
<summary>
Specifies where the information for validation should come from.
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.SpecificationSource.Both">
<summary>
Configuration and type attributes.
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.SpecificationSource.Attributes">
<summary>
Type attributes only, ignoring configuration.
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.SpecificationSource.Configuration">
<summary>
Configuration only, ignoring type attributes.
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.SpecificationSource.ParameterAttributesOnly">
<summary>
Only use attributes on the parameters themselves; ignore types and configuration.
</summary>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ValidationCallHandlerAttribute">
<summary>
Applies the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ValidationCallHandler"/> to its target.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ValidationCallHandlerAttribute.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ValidationCallHandlerAttribute"/> that uses the
default rule set.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ValidationCallHandlerAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ValidationCallHandlerAttribute"/> that uses the
given rule set.
</summary>
<param name="ruleSet">The name of the rule set to use.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ValidationCallHandlerAttribute.CreateHandler(Microsoft.Practices.Unity.IUnityContainer)">
<summary>
Derived classes implement this method. When called, it
creates a new call handler as specified in the attribute
configuration.
</summary>
<returns>A new call handler object.</returns>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ValidationCallHandlerAttribute.SpecificationSource">
<summary>
Gets the <see cref="P:Microsoft.Practices.EnterpriseLibrary.Validation.PolicyInjection.ValidationCallHandlerAttribute.SpecificationSource"/> that determines where to get validation rules from.
</summary>
<value>The specification source.</value>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.Configuration.AssemblyMatchingRuleData">
<summary>
Configuration element for the <see cref="T:Microsoft.Practices.Unity.InterceptionExtension.AssemblyMatchingRule"/>.
</summary>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.Configuration.MatchingRuleData">
<summary>
A configuration element base class that stores configuration information about a matching rule.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.Configuration.MatchingRuleData.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.Configuration.MatchingRuleData"/> class.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.Configuration.MatchingRuleData.#ctor(System.String,System.Type)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.Configuration.MatchingRuleData"/> class.
</summary>
<param name="matchingRuleName">The name of the rule in config.</param>
<param name="matchingRuleType">The underlying type of matching rule this object configures.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.Configuration.MatchingRuleData.ConfigureContainer(Microsoft.Practices.Unity.IUnityContainer,System.String)">
<summary>
Configures an <see cref="T:Microsoft.Practices.Unity.IUnityContainer"/> to resolve the represented matching rule.
</summary>
<param name="container">The container to configure.</param>
<param name="nameSuffix">The name suffix to use for the matching rule registration name.</param>
<returns>The actual rule registration name.</returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.Configuration.MatchingRuleData.DoConfigureContainer(Microsoft.Practices.Unity.IUnityContainer,System.String)">
<summary>
Configures an <see cref="T:Microsoft.Practices.Unity.IUnityContainer"/> to resolve the represented matching rule by using the specified name.
</summary>
<param name="container">The container to configure.</param>
<param name="registrationName">The name of the registration.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.Configuration.AssemblyMatchingRuleData.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.Configuration.AssemblyMatchingRuleData"/> class with default settings.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.Configuration.AssemblyMatchingRuleData.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.Configuration.AssemblyMatchingRuleData"/> class with the given
rule name and assembly name pattern to match.
</summary>
<param name="matchingRuleName">The name of rule from the configuration file.</param>
<param name="assemblyName">The assembly name to match.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.Configuration.AssemblyMatchingRuleData.DoConfigureContainer(Microsoft.Practices.Unity.IUnityContainer,System.String)">
<summary>
Configures an <see cref="T:Microsoft.Practices.Unity.IUnityContainer"/> to resolve the represented matching rule by using the specified name.
</summary>
<param name="container">The container to configure.</param>
<param name="registrationName">The name of the registration.</param>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.PolicyInjection.Configuration.AssemblyMatchingRuleData.Match">
<summary>
The assembly name to match.
</summary>
<value>Assembly name to match.</value>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.CallHandlerData">
<summary>
Base class for configuration information stored about a call handler.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.CallHandlerData.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.CallHandlerData"/> class.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.CallHandlerData.#ctor(System.String,System.Type)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.CallHandlerData"/> class with the specified name and type.
</summary>
<param name="handlerName">The name of the handler entry.</param>
<param name="handlerType">The type of handler to create.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.CallHandlerData.#ctor(System.String,System.Type,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.CallHandlerData"/> class with the specified name, type, and handler order.
</summary>
<param name="handlerName">The name of the handler entry.</param>
<param name="handlerType">The type of handler to create.</param>
<param name="order">The order in which the handler will be executed.</param>