-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPostSharp.xml
12034 lines (12034 loc) · 648 KB
/
PostSharp.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" encoding="utf-8"?>
<doc>
<assembly>
<name>PostSharp</name>
</assembly>
<members>
<member name="T:PostSharp.IgnoreWarningAttribute">
<summary>
Instructs PostSharp to ignore warnings and information messages. Errors cannot be ignored.
</summary>
</member>
<member name="M:PostSharp.IgnoreWarningAttribute.#ctor(System.String)">
<summary>
Creates a new instance of <see cref="T:PostSharp.IgnoreWarningAttribute" />.
</summary>
<param name="messageId">Identifier of the ignored warning.</param>
</member>
<member name="P:PostSharp.IgnoreWarningAttribute.MessageId">
<summary>
Gets the identifier of the ignored warning.
</summary>
</member>
<member name="P:PostSharp.IgnoreWarningAttribute.Reason">
<summary>
Gets or set the reason (a human-readable text) why the warning must be ignored.
</summary>
</member>
<member name="T:PostSharp.MessageLocation">
<summary>
Represents the location of a message, which means, for the end-user, a line in a file of source code.
From the aspect developer, the location can be known as an object representing an element of code
(for instance a <see cref="T:System.Type" /> or <see cref="T:System.Reflection.MethodInfo" />). Such implicit locations are resolved
by PostSharp to a file and line number.
</summary>
</member>
<member name="P:PostSharp.MessageLocation.CodeElement">
<summary>
Element of code (reflection object or <c>Declaration</c>) from which the location must be resolved.
</summary>
</member>
<member name="P:PostSharp.MessageLocation.EndColumn">
<summary>
Gets the ending column in the file that caused the
message.
</summary>
</member>
<member name="P:PostSharp.MessageLocation.EndLine">
<summary>
Gets the ending line in the file that caused the message.
</summary>
</member>
<member name="M:PostSharp.MessageLocation.Explicit(System.String)">
<summary>
Builds a <see cref="T:PostSharp.MessageLocation" /> explicitly by specifying a filename, when the
</summary>
<param name="file">File name.</param>
<returns>A <see cref="T:PostSharp.MessageLocation" />.</returns>
</member>
<member name="M:PostSharp.MessageLocation.Explicit(System.String,System.Int32,System.Int32)">
<summary>
Builds a <see cref="T:PostSharp.MessageLocation" /> explicitly by specifying a filename, line, and column.
</summary>
<param name="file">File name.</param>
<param name="line">Line number.</param>
<param name="column">Column number.</param>
<returns>A <see cref="T:PostSharp.MessageLocation" />.</returns>
</member>
<member name="M:PostSharp.MessageLocation.Explicit(System.String,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Builds a <see cref="T:PostSharp.MessageLocation" /> explicitly by specifying a filename, line, and column.
</summary>
<param name="file">File name.</param>
<param name="lineStart">Starting line number.</param>
<param name="columnStart">Starting column number.</param>
<param name="lineEnd">Ending line number.</param>
<param name="columnEnd">Ending column number.</param>
<returns>A <see cref="T:PostSharp.MessageLocation" />.</returns>
</member>
<member name="P:PostSharp.MessageLocation.File">
<summary>
Gets the name of the file that caused the message.
</summary>
</member>
<member name="M:PostSharp.MessageLocation.Of(PostSharp.Reflection.LocationInfo)">
<summary>
Builds a <see cref="T:PostSharp.MessageLocation" /> from a <see cref="T:PostSharp.Reflection.LocationInfo" />.
</summary>
<param name="location">A <see cref="T:PostSharp.Reflection.LocationInfo" />.</param>
<returns>A <see cref="T:PostSharp.MessageLocation" />.</returns>
</member>
<member name="M:PostSharp.MessageLocation.Of(PostSharp.Reflection.SymbolSequencePoint)">
<summary>
Builds a <see cref="T:PostSharp.MessageLocation" /> from a <see cref="T:PostSharp.Reflection.SymbolSequencePoint" />.
</summary>
<param name="symbolSequencePoint">A <see cref="T:PostSharp.Reflection.SymbolSequencePoint" />.</param>
<returns>A <see cref="T:PostSharp.MessageLocation" /> corresponding to <paramref name="symbolSequencePoint" />.</returns>
</member>
<member name="M:PostSharp.MessageLocation.Of(PostSharp.Reflection.Syntax.IExpression)">
<summary>
Builds a <see cref="T:PostSharp.MessageLocation" /> from an <see cref="T:PostSharp.Reflection.Syntax.IExpression" />.
</summary>
<param name="expression">An <see cref="T:PostSharp.Reflection.Syntax.IExpression" />.</param>
<returns>A <see cref="T:PostSharp.MessageLocation" />.</returns>
</member>
<member name="M:PostSharp.MessageLocation.Of(System.Object)">
<summary>
Builds a <see cref="T:PostSharp.MessageLocation" /> from an object representing an
element of code (<see cref="T:System.Type" />, <see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.ConstructorInfo" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:PostSharp.Reflection.Syntax.IExpression" />, <see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Reflection.ParameterInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.PropertyInfo" /> or, if
you are using PostSharp SDK, any <c>Declaration</c>).
</summary>
<param name="codeElement">an object representing an
element of code (<see cref="T:System.Type" />, <see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.ConstructorInfo" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Reflection.ParameterInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:PostSharp.Reflection.Syntax.IExpression" /> or, if you are using PostSharp SDK, any <c>Declaration</c>.</param>
<returns>A <see cref="T:PostSharp.MessageLocation" /> representing <paramref name="codeElement" />.</returns>
</member>
<member name="M:PostSharp.MessageLocation.Of(System.Reflection.Assembly)">
<summary>
Builds a <see cref="T:PostSharp.MessageLocation" /> from an <see cref="T:System.Reflection.Assembly" />.
</summary>
<param name="assembly">An <see cref="T:System.Reflection.Assembly" /> (<see cref="T:System.Reflection.Assembly" /> or its wrapper).</param>
<returns>A <see cref="T:PostSharp.MessageLocation" />.</returns>
</member>
<member name="M:PostSharp.MessageLocation.Of(System.Reflection.MemberInfo)">
<summary>
Builds a <see cref="T:PostSharp.MessageLocation" /> from a <see cref="T:System.Reflection.MemberInfo" /> (<see cref="T:System.Type" />,
<see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.ConstructorInfo" />, <see cref="T:System.Reflection.FieldInfo" />,
<see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />).
</summary>
<param name="member">An element of code (<see cref="T:System.Type" />,
<see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.ConstructorInfo" />, <see cref="T:System.Reflection.FieldInfo" />,
<see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />).</param>
<returns>A <see cref="T:PostSharp.MessageLocation" />.</returns>
</member>
<member name="M:PostSharp.MessageLocation.Of(System.Reflection.ParameterInfo)">
<summary>
Builds a <see cref="T:PostSharp.MessageLocation" /> from a <see cref="T:System.Reflection.ParameterInfo" />.
</summary>
<param name="parameter">A <see cref="T:System.Reflection.ParameterInfo" />.</param>
<returns>A <see cref="T:PostSharp.MessageLocation" />.</returns>
</member>
<member name="P:PostSharp.MessageLocation.StartColumn">
<summary>
Gets the starting column in the file that caused the message.
</summary>
</member>
<member name="P:PostSharp.MessageLocation.StartLine">
<summary>
Gets the starting line in the file that caused the message.
</summary>
</member>
<member name="F:PostSharp.MessageLocation.Unknown">
<summary>
Represents an unknown or indeterminate location of the error message.
</summary>
</member>
<member name="T:PostSharp.Post">
<summary>
Provides some methods that are transformed during post-compilation.
</summary>
</member>
<member name="M:PostSharp.Post.Cast``2(``0)">
<summary>
At post-compile time, casts an instance of a type into another.
A post-compile time error is reported if the source type cannot be
assigned to the target type.
</summary>
<param name="o">Instance to be casted.</param>
<typeparam name="SourceType">Source type.</typeparam>
<typeparam name="TargetType">Target type.</typeparam>
<returns>The object <paramref name="o" /> casted as <typeparamref name="TargetType" />.</returns>
</member>
<member name="M:PostSharp.Post.GetValue``1(``0)">
<summary>
When used to retrieve the value of a field, forces the compiler to retrieve a copy
of the field value instead of an address to this field. This allows to call
instance methods of value-type fields without loading the field address.
</summary>
<param name="value">Value.</param>
<typeparam name="T">Type of the value to retrieve (this type parameter can generally be omitted).</typeparam>
<returns>
<paramref name="value" />, exactly.</returns>
</member>
<member name="P:PostSharp.Post.IsTransformed">
<summary>
Determines whether the calling program has been transformed by PostSharp.
</summary>
</member>
<member name="T:PostSharp.Aspects.AdviceArgs">
<summary>
Base class for arguments of all advices.
</summary>
</member>
<member name="M:PostSharp.Aspects.AdviceArgs.#ctor(System.Object)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.AdviceArgs" />.
</summary>
<param name="instance">The instance related to the advice invocation, or
<c>null</c> if the advice is associated to a static element of code.</param>
</member>
<member name="P:PostSharp.Aspects.AdviceArgs.DeclarationIdentifier">
<summary>
Gets the <see cref="P:PostSharp.Aspects.AdviceArgs.DeclarationIdentifier" /> of the declaration to which the
advice has been applied.
</summary>
</member>
<member name="P:PostSharp.Aspects.AdviceArgs.Instance">
<summary>
Gets or sets the object instance on which the method is being executed.
</summary>
</member>
<member name="T:PostSharp.Aspects.Arguments">
<summary>
Encapsulation of method arguments.
</summary>
</member>
<member name="M:PostSharp.Aspects.Arguments.Clone">
<summary>
Returns a shallow copy of the current object.
</summary>
<returns>A shallow copy of the current object.</returns>
</member>
<member name="M:PostSharp.Aspects.Arguments.CopyFrom(System.Object[],System.Int32)">
<summary>
Copies all the argument values from the elements of <see cref="T:System.Array" />.
</summary>
<param name="array">The array that is the source of the argument values copied into the current <see cref="T:PostSharp.Aspects.Arguments" />.</param>
<param name="index">An integer that represents the index in <paramref name="array" /> at which copying begins.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="array" /> is <c>null</c>.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero.</exception>
</member>
<member name="M:PostSharp.Aspects.Arguments.CopyTo(System.Object[],System.Int32)">
<summary>
Copies all arguments values to the specified <see cref="T:System.Array" /> starting at the specified destination <see cref="T:System.Array" /> index.
</summary>
<param name="array">The array that is the destination of argument values copied from the current <see cref="T:PostSharp.Aspects.Arguments" />.</param>
<param name="index">An integer that represents the index in <paramref name="array" /> at which copying begins</param>
</member>
<member name="P:PostSharp.Aspects.Arguments.Count">
<summary>
Gets the number of arguments encapsulated by the current object.
</summary>
</member>
<member name="M:PostSharp.Aspects.Arguments.Create(System.Object[])">
<summary>
Creates a weakly-typed <see cref="T:PostSharp.Aspects.Arguments" /> object representing any number of arguments.
</summary>
<param name="array"></param>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Aspects.Arguments.Create(System.Object[])</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Aspects.Arguments.Create``1(``0)">
<summary>
Creates a strongly-typed <see cref="T:PostSharp.Aspects.Arguments" /> object representing 1 argument.
</summary>
<param name="arg0"></param>
<typeparam name="T"></typeparam>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Aspects.Arguments.Create``1(``0)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Aspects.Arguments.Create``2(``0,``1)">
<summary>
Creates a strongly-typed <see cref="T:PostSharp.Aspects.Arguments" /> object representing 2 arguments.
</summary>
<param name="arg0"></param>
<param name="arg1"></param>
<typeparam name="T0"></typeparam>
<typeparam name="T1"></typeparam>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Aspects.Arguments.Create``2(``0,``1)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Aspects.Arguments.Create``3(``0,``1,``2)">
<summary>
Creates a strongly-typed <see cref="T:PostSharp.Aspects.Arguments" /> object representing 3 arguments.
</summary>
<param name="arg0"></param>
<param name="arg1"></param>
<param name="arg2"></param>
<typeparam name="T0"></typeparam>
<typeparam name="T1"></typeparam>
<typeparam name="T2"></typeparam>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Aspects.Arguments.Create``3(``0,``1,``2)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Aspects.Arguments.Create``4(``0,``1,``2,``3)">
<summary>
Creates a strongly-typed <see cref="T:PostSharp.Aspects.Arguments" /> object representing 4 arguments.
</summary>
<param name="arg0"></param>
<param name="arg1"></param>
<param name="arg2"></param>
<param name="arg3"></param>
<typeparam name="T0"></typeparam>
<typeparam name="T1"></typeparam>
<typeparam name="T2"></typeparam>
<typeparam name="T3"></typeparam>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Aspects.Arguments.Create``4(``0,``1,``2,``3)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Aspects.Arguments.Create``5(``0,``1,``2,``3,``4)">
<summary>
Creates a strongly-typed <see cref="T:PostSharp.Aspects.Arguments" /> object representing 5 arguments.
</summary>
<param name="arg0"></param>
<param name="arg1"></param>
<param name="arg2"></param>
<param name="arg3"></param>
<param name="arg4"></param>
<typeparam name="T0"></typeparam>
<typeparam name="T1"></typeparam>
<typeparam name="T2"></typeparam>
<typeparam name="T3"></typeparam>
<typeparam name="T4"></typeparam>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Aspects.Arguments.Create``5(``0,``1,``2,``3,``4)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Aspects.Arguments.Create``6(``0,``1,``2,``3,``4,``5)">
<summary>
Creates a strongly-typed <see cref="T:PostSharp.Aspects.Arguments" /> object representing 6 arguments.
</summary>
<param name="arg0"></param>
<param name="arg1"></param>
<param name="arg2"></param>
<param name="arg3"></param>
<param name="arg4"></param>
<param name="args5"></param>
<typeparam name="T0"></typeparam>
<typeparam name="T1"></typeparam>
<typeparam name="T2"></typeparam>
<typeparam name="T3"></typeparam>
<typeparam name="T4"></typeparam>
<typeparam name="T5"></typeparam>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Aspects.Arguments.Create``6(``0,``1,``2,``3,``4,``5)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Aspects.Arguments.Create``7(``0,``1,``2,``3,``4,``5,``6)">
<summary>
Creates a strongly-typed <see cref="T:PostSharp.Aspects.Arguments" /> object representing 7 arguments.
</summary>
<param name="arg0"></param>
<param name="arg1"></param>
<param name="arg2"></param>
<param name="arg3"></param>
<param name="arg4"></param>
<param name="args5"></param>
<param name="args6"></param>
<typeparam name="T0"></typeparam>
<typeparam name="T1"></typeparam>
<typeparam name="T2"></typeparam>
<typeparam name="T3"></typeparam>
<typeparam name="T4"></typeparam>
<typeparam name="T5"></typeparam>
<typeparam name="T6"></typeparam>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Aspects.Arguments.Create``7(``0,``1,``2,``3,``4,``5,``6)</parameter>
</include>
</markup>
</returns>
</member>
<member name="M:PostSharp.Aspects.Arguments.Create``8(``0,``1,``2,``3,``4,``5,``6,``7)">
<summary>
Creates a strongly-typed <see cref="T:PostSharp.Aspects.Arguments" /> object representing 8 arguments.
</summary>
<param name="arg0"></param>
<param name="arg1"></param>
<param name="arg2"></param>
<param name="arg3"></param>
<param name="arg4"></param>
<param name="args5"></param>
<param name="args6"></param>
<param name="args7"></param>
<typeparam name="T0"></typeparam>
<typeparam name="T1"></typeparam>
<typeparam name="T2"></typeparam>
<typeparam name="T3"></typeparam>
<typeparam name="T4"></typeparam>
<typeparam name="T5"></typeparam>
<typeparam name="T6"></typeparam>
<typeparam name="T7"></typeparam>
<returns>
<markup>
<include item="SMCMissingTag">
<parameter>returns</parameter>
<parameter>M:PostSharp.Aspects.Arguments.Create``8(``0,``1,``2,``3,``4,``5,``6,``7)</parameter>
</include>
</markup>
</returns>
</member>
<member name="F:PostSharp.Aspects.Arguments.Empty">
<summary>
Empty list of <see cref="T:PostSharp.Aspects.Arguments" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.Arguments.GetArgument(System.Int32)">
<summary>
Gets the value of the argument at a given index.
</summary>
<param name="index">Argument index.</param>
<returns>The value of the argument at position <paramref name="index" />.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero or greater or equal than <see cref="P:PostSharp.Aspects.Arguments.Count" />.</exception>
</member>
<member name="M:PostSharp.Aspects.Arguments.GetEnumerator">
<summary>Returns an enumerator that iterates through the collection.</summary>
<returns>A <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.</returns>
</member>
<member name="P:PostSharp.Aspects.Arguments.Item(System.Int32)">
<summary>
Gets or sets the value of an argument.
</summary>
<param name="index">Argument index.</param>
<returns>The argument value.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero or greater or equal than <see cref="P:PostSharp.Aspects.Arguments.Count" />.</exception>
</member>
<member name="M:PostSharp.Aspects.Arguments.SetArgument(System.Int32,System.Object)">
<summary>
Sets the value of the argument at a given index.
</summary>
<param name="index">Argument index.</param>
<param name="value">New value of the argument at position <paramref name="index" />.</param>
<exception cref="T:System.InvalidCastException">
<paramref name="value" /> is not assignable to parameter
at position <paramref name="index" />.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is lower than zero or greater or equal than <see cref="P:PostSharp.Aspects.Arguments.Count" />.</exception>
</member>
<member name="M:PostSharp.Aspects.Arguments.ToArray">
<summary>
Converts the current argument list into an <see cref="T:System.Array" />.
</summary>
<returns>An <see cref="T:System.Array" /> whose elements are equal to the values encapsulated by the current <see cref="T:PostSharp.Aspects.Arguments" />.</returns>
</member>
<member name="T:PostSharp.Aspects.Aspect">
<summary>
Base class for all aspects that are declared using multicast custom attributes (<see cref="T:PostSharp.Extensibility.MulticastAttribute" />).
</summary>
</member>
<member name="M:PostSharp.Aspects.Aspect.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.Aspect</parameter>
</include>
</markup>
</summary>
</member>
<member name="P:PostSharp.Aspects.Aspect.AspectPriority">
<summary>
Gets or sets the weaving priority of the aspect.
</summary>
</member>
<member name="M:PostSharp.Aspects.Aspect.CompileTimeValidate(System.Object)">
<summary>
Method invoked at build time to ensure that the aspect has been applied to the right target.
</summary>
<param name="target">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the aspect has been applied.</param>
<returns>
<c>true</c> if the aspect was applied to an acceptable target, otherwise
<c>false</c>.</returns>
</member>
<member name="M:PostSharp.Aspects.Aspect.CreateAspectConfiguration">
<summary>
Method invoked at build time to create a concrete <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance specifically
for the current <see cref="T:PostSharp.Aspects.Aspect" /> type.
</summary>
<returns>A new and empty instance of <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" />, whose concrete type corresponds to
the concrete type of the <see cref="T:PostSharp.Aspects.Aspect" />.</returns>
</member>
<member name="M:PostSharp.Aspects.Aspect.GetAspectConfiguration(System.Object)">
<summary>
Method invoked at build tome to get the imperative configuration of the current <see cref="T:PostSharp.Aspects.Aspect" />.
</summary>
<param name="targetElement">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the current <see cref="T:PostSharp.Aspects.Aspect" />
has been applied.
</param>
<returns>An <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> representing the imperative configuration
of the current <see cref="T:PostSharp.Aspects.Aspect" />.</returns>
</member>
<member name="P:PostSharp.Aspects.Aspect.SerializerType">
<summary>
Gets or sets the <see cref="T:System.Type" /> of the serializer (a type derived
from <see cref="T:PostSharp.Aspects.Serialization.AspectSerializer" />) used to serialize the aspect instance
at build time and deserialize it at runtime.
</summary>
</member>
<member name="M:PostSharp.Aspects.Aspect.SetAspectConfiguration(PostSharp.Aspects.Configuration.AspectConfiguration,System.Object)">
<summary>
Method invoked at build time to set up an <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> object according to the current
<see cref="T:PostSharp.Aspects.Aspect" /> instance and a specified target element of the current aspect.
</summary>
<param name="aspectConfiguration">The <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance previously returned by the
<see cref="M:PostSharp.Aspects.Aspect.CreateAspectConfiguration" /> method.</param>
<param name="targetElement">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the current <see cref="T:PostSharp.Aspects.Aspect" />
has been applied.
</param>
</member>
<member name="T:PostSharp.Aspects.AspectDescriptionAttribute">
<summary>
Custom attribute that, when applied to an aspect class, specifies a human-readable description of the aspect
that can be displayed in PostSharp Tools for Visual Studio.
</summary>
</member>
<member name="M:PostSharp.Aspects.AspectDescriptionAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:PostSharp.Aspects.AspectDescriptionAttribute" /> class.
</summary>
<param name="description">A human-readable description of the aspect class to which
the <see cref="T:PostSharp.Aspects.AspectDescriptionAttribute" /> custom attribute is applied.</param>
</member>
<member name="P:PostSharp.Aspects.AspectDescriptionAttribute.Description">
<summary>
Gets a human-readable description of the aspect class to which
the <see cref="T:PostSharp.Aspects.AspectDescriptionAttribute" /> custom attribute is applied.
</summary>
</member>
<member name="T:PostSharp.Aspects.AspectInfo">
<summary>
Reserved for future usage.
</summary>
</member>
<member name="M:PostSharp.Aspects.AspectInfo.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.AspectInfo</parameter>
</include>
</markup>
</summary>
</member>
<member name="T:PostSharp.Aspects.AspectInstance">
<summary>
Completely specifies an aspect instance, including its target code element. An <see cref="T:PostSharp.Aspects.AspectInstance" />
contains either the aspect instance itself (<see cref="T:PostSharp.Aspects.Aspect" /> property), either information allowing to construct the aspect
(<see cref="P:PostSharp.Aspects.AspectSpecification.AspectConstruction" />) and configure the weaver (<see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" />).
</summary>
</member>
<member name="M:PostSharp.Aspects.AspectInstance.#ctor(System.Object,PostSharp.Aspects.IAspect)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.AspectInstance" /> from a runtime aspect instance (<see cref="T:PostSharp.Aspects.IAspect" />).
</summary>
<param name="targetElement">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the current <see cref="T:PostSharp.Aspects.AspectInstance" />
is applied.</param>
<param name="aspect">The aspect runtime instance.</param>
</member>
<member name="M:PostSharp.Aspects.AspectInstance.#ctor(System.Object,PostSharp.Aspects.IAspect,PostSharp.Aspects.Configuration.AspectConfiguration)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.AspectInstance" /> from a runtime aspect instance (<see cref="T:PostSharp.Aspects.IAspect" />)
and its <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" />.
</summary>
<param name="targetElement">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the current <see cref="T:PostSharp.Aspects.AspectInstance" />
is applied.</param>
<param name="aspect">The aspect runtime instance.</param>
<param name="aspectConfiguration">The aspect configuration (the type of this parameter should be equal to the
type configuration objects expected by the concrete <paramref name="aspect" />).</param>
</member>
<member name="M:PostSharp.Aspects.AspectInstance.#ctor(System.Object,PostSharp.Reflection.ObjectConstruction,PostSharp.Aspects.Configuration.AspectConfiguration)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.AspectInstance" /> from
</summary>
<param name="targetElement">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the current <see cref="T:PostSharp.Aspects.AspectInstance" />
is applied.</param>
<param name="aspectConstruction">An <see cref="T:PostSharp.Reflection.ObjectConstruction" /> instructing how the aspect instance
should be constructed.</param>
<param name="aspectConfiguration">An optional configuration object whose type corresponds to
the aspect type.</param>
</member>
<member name="P:PostSharp.Aspects.AspectInstance.RepresentAsStandalone">
<summary>
Determines whether the <see cref="T:PostSharp.Aspects.AspectInstance" /> should be represented as a stand-alone instance
in PostSharp Tools for Visual Studio. If <c>false</c>, the current <see cref="T:PostSharp.Aspects.AspectInstance" />
will be not be represented as a standalone node, and its advices will be merged with the ones provided
by the parent aspect (implementing <see cref="T:PostSharp.Aspects.IAspectProvider" />). The default value is <c>false</c>.
</summary>
</member>
<member name="P:PostSharp.Aspects.AspectInstance.TargetElement">
<summary>
Gets the code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the current <see cref="T:PostSharp.Aspects.AspectInstance" />
is applied.
</summary>
</member>
<member name="T:PostSharp.Aspects.AspectSpecification">
<summary>
Completely specifies an aspect instance (but not its target). An <see cref="T:PostSharp.Aspects.AspectSpecification" /> either the aspect instance itself
(<see cref="P:PostSharp.Aspects.AspectSpecification.Aspect" /> property), either information allowing to construct the aspect (<see cref="P:PostSharp.Aspects.AspectSpecification.AspectConstruction" />) and configure the weaver (<see cref="P:PostSharp.Aspects.AspectSpecification.AspectConfiguration" />).
</summary>
</member>
<member name="M:PostSharp.Aspects.AspectSpecification.#ctor(PostSharp.Reflection.ObjectConstruction,PostSharp.Aspects.Configuration.AspectConfiguration)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.AspectSpecification" /> when one cannot provide an aspect instance,
i.e. from an <see cref="T:PostSharp.Reflection.ObjectConstruction" /> and a <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" />.
</summary>
<param name="aspectConstruction">Aspect construction.</param>
<param name="aspectConfiguration">Aspect configuration.</param>
</member>
<member name="P:PostSharp.Aspects.AspectSpecification.Aspect">
<summary>
Gets the aspect instance.
</summary>
</member>
<member name="P:PostSharp.Aspects.AspectSpecification.AspectAssemblyQualifiedTypeName">
<summary>
Gets the assembly-qualified type name of the aspect.
</summary>
</member>
<member name="P:PostSharp.Aspects.AspectSpecification.AspectConfiguration">
<summary>
Gets the aspect configuration.
</summary>
</member>
<member name="P:PostSharp.Aspects.AspectSpecification.AspectConstruction">
<summary>
Gets the aspect construction.
</summary>
</member>
<member name="P:PostSharp.Aspects.AspectSpecification.AspectTypeName">
<summary>
Gets the type name of the aspect.
</summary>
</member>
<member name="T:PostSharp.Aspects.AspectUtilities">
<summary>
Utility methods for <c>PostSharp.Aspects</c>.
</summary>
</member>
<member name="M:PostSharp.Aspects.AspectUtilities.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.AspectUtilities</parameter>
</include>
</markup>
</summary>
</member>
<member name="M:PostSharp.Aspects.AspectUtilities.GetCurrentInstanceCredentials">
<summary>
Gets the <see cref="T:PostSharp.Aspects.InstanceCredentials" /> of the calling instance. This method must be
invoked from an instance method (not a static method) of a type that has been enhanced
by an aspect.
</summary>
<returns>The <see cref="T:PostSharp.Aspects.InstanceCredentials" /> of the calling instance.</returns>
</member>
<member name="M:PostSharp.Aspects.AspectUtilities.InitializeCurrentAspects">
<summary>
Initializes the all the aspects of the calling instance. This method must be
invoked from an instance method (not a static method) of a type that has been enhanced
by an aspect.
</summary>
</member>
<member name="T:PostSharp.Aspects.AssemblyLevelAspect">
<summary>
Base class for all aspects applied on assemblies.
</summary>
</member>
<member name="M:PostSharp.Aspects.AssemblyLevelAspect.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.AssemblyLevelAspect</parameter>
</include>
</markup>
</summary>
</member>
<member name="M:PostSharp.Aspects.AssemblyLevelAspect.CompileTimeInitialize(System.Reflection.Assembly,PostSharp.Aspects.AspectInfo)">
<summary>
Method invoked at build time to initialize the instance fields of the current aspect. This method is invoked
before any other build-time method.
</summary>
<param name="assembly">Assembly to which the current aspect is applied</param>
<param name="aspectInfo">Reserved for future usage.</param>
</member>
<member name="M:PostSharp.Aspects.AssemblyLevelAspect.CompileTimeValidate(System.Object)">
<summary>
Method invoked at build time to ensure that the aspect has been applied to the right target.
</summary>
<param name="target">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the aspect has been applied.</param>
<returns>
<c>true</c> if the aspect was applied to an acceptable target, otherwise
<c>false</c>.</returns>
</member>
<member name="M:PostSharp.Aspects.AssemblyLevelAspect.CompileTimeValidate(System.Reflection.Assembly)">
<summary>
Method invoked at build time to ensure that the aspect has been applied to the right target.
</summary>
<param name="assembly">Assembly on which the current aspect is applied.</param>
<returns>
<c>true</c> if the aspect was applied to an acceptable target, otherwise
<c>false</c>.</returns>
</member>
<member name="M:PostSharp.Aspects.AssemblyLevelAspect.SetAspectConfiguration(PostSharp.Aspects.Configuration.AspectConfiguration,System.Object)">
<summary>
Method invoked at build time to set up an <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> object according to the current
<see cref="T:PostSharp.Aspects.Aspect" /> instance and a specified target element of the current aspect.
</summary>
<param name="aspectConfiguration">The <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance previously returned by the
<see cref="M:PostSharp.Aspects.Aspect.CreateAspectConfiguration" /> method.</param>
<param name="targetElement">Code element (<see cref="T:System.Reflection.Assembly" />, <see cref="T:System.Type" />,
<see cref="T:System.Reflection.FieldInfo" />, <see cref="T:System.Reflection.MethodBase" />, <see cref="T:System.Reflection.PropertyInfo" />, <see cref="T:System.Reflection.EventInfo" />,
<see cref="T:System.Reflection.ParameterInfo" />, or <see cref="T:PostSharp.Reflection.LocationInfo" />) to which the current <see cref="T:PostSharp.Aspects.Aspect" />
has been applied.
</param>
</member>
<member name="M:PostSharp.Aspects.AssemblyLevelAspect.SetAspectConfiguration(PostSharp.Aspects.Configuration.AspectConfiguration,System.Reflection.Assembly)">
<summary>
Method invoked at build time to set up an <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> object according to the current
<see cref="T:PostSharp.Aspects.Aspect" /> instance and a specified target element of the current aspect.
</summary>
<param name="aspectConfiguration">The <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance previously returned by the
<see cref="M:PostSharp.Aspects.Aspect.CreateAspectConfiguration" /> method.</param>
<param name="targetAssembly">Assembly to which the current aspect has been applied.</param>
</member>
<member name="T:PostSharp.Aspects.CompositionAspect">
<summary>
Aspect that, when applied on a type, introduces one or many new interfaces
into that type.
</summary>
</member>
<member name="M:PostSharp.Aspects.CompositionAspect.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.CompositionAspect</parameter>
</include>
</markup>
</summary>
</member>
<member name="P:PostSharp.Aspects.CompositionAspect.AncestorOverrideAction">
<summary>
Specifies the action (<see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Fail" /> or <see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Ignore" />)
to be overtaken when an <i>ancestor</i> of one of the interfaces returned by <see cref="M:PostSharp.Aspects.CompositionAspect.GetPublicInterfaces(System.Type)" />
is already implemented by the type to which the current aspect is applied.
</summary>
</member>
<member name="M:PostSharp.Aspects.CompositionAspect.CreateAspectConfiguration">
<summary>
Method invoked at build time to create a concrete <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance specifically
for the current <see cref="T:PostSharp.Aspects.Aspect" /> type.
</summary>
<returns>A new and empty instance of <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" />, whose concrete type corresponds to
the concrete type of the <see cref="T:PostSharp.Aspects.Aspect" />.</returns>
</member>
<member name="M:PostSharp.Aspects.CompositionAspect.CreateImplementationObject(PostSharp.Aspects.AdviceArgs)">
<summary>
Method invoked at runtime, during the initialization of instances of the target type,
to create the composed object.
</summary>
<param name="args">
<markup>
<include item="SMCMissingParamTag">
<parameter>param</parameter>
<parameter>args</parameter>
<parameter>M:PostSharp.Aspects.CompositionAspect.CreateImplementationObject(PostSharp.Aspects.AdviceArgs)</parameter>
</include>
</markup>
</param>
<returns>The composed object. This interface should implement the interfaces specified
by the <see cref="M:PostSharp.Aspects.CompositionAspect.GetPublicInterfaces(System.Type)" /> and
<see cref="M:PostSharp.Aspects.CompositionAspect.GetProtectedInterfaces(System.Type)" /> methods.</returns>
</member>
<member name="P:PostSharp.Aspects.CompositionAspect.GenerateImplementationAccessor">
<summary>
Determines whether the interface <see cref="T:PostSharp.Aspects.IComposed`1" /> should be introduced into the type to which the aspect
is applied for each interface returned by the <see cref="M:PostSharp.Aspects.CompositionAspect.GetPublicInterfaces(System.Type)" /> method.
</summary>
</member>
<member name="M:PostSharp.Aspects.CompositionAspect.GetPublicInterfaces(System.Type)">
<summary>
Gets the array of interfaces that should be introduced publicly into
the target type of the current aspect.
</summary>
<param name="targetType">
<see cref="T:System.Type" /> to which the current aspect is applied.</param>
<returns>The array of interfaces that should be introduced publicly into <see cref="T:System.Type" /><paramref name="targetType" />, or <c>null</c> if no interface should
be introduced publicly.</returns>
</member>
<member name="P:PostSharp.Aspects.CompositionAspect.NonSerializedImplementation">
<summary>
Determines whether the field containing the interface implementation (and storing the object returned by
<see cref="M:PostSharp.Aspects.CompositionAspect.CreateImplementationObject(PostSharp.Aspects.AdviceArgs)" />) should be excluded from serialization by <see cref="T:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter" />.
The same effect is typically obtained by applying the <see cref="T:System.NonSerializedAttribute" /> custom attribute to the field.
</summary>
</member>
<member name="P:PostSharp.Aspects.CompositionAspect.OverrideAction">
<summary>
Specifies the action (<see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Fail" /> or <see cref="F:PostSharp.Aspects.Advices.InterfaceOverrideAction.Ignore" />)
to be overtaken when one of the interfaces returned by <see cref="M:PostSharp.Aspects.CompositionAspect.GetPublicInterfaces(System.Type)" /> or <see cref="M:PostSharp.Aspects.CompositionAspect.GetProtectedInterfaces(System.Type)" />
is already implemented by the type to which the current aspect is applied.
</summary>
</member>
<member name="M:PostSharp.Aspects.CompositionAspect.SetAspectConfiguration(PostSharp.Aspects.Configuration.AspectConfiguration,System.Type)">
<summary>
Method invoked at build time to set up an <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> object according to the current
<see cref="T:PostSharp.Aspects.Aspect" /> instance and a specified target element of the current aspect.
</summary>
<param name="aspectConfiguration">The <see cref="T:PostSharp.Aspects.Configuration.AspectConfiguration" /> instance previously returned by the
<see cref="M:PostSharp.Aspects.Aspect.CreateAspectConfiguration" /> method.</param>
<param name="targetType">Type to which the current aspect has been applied.</param>
</member>
<member name="T:PostSharp.Aspects.ConstructorDepth">
<summary>
System type used in the implementation of the <see cref="T:PostSharp.Aspects.Advices.OnInstanceConstructedAdvice" />. Do not use in user code.
</summary>
</member>
<member name="M:PostSharp.Aspects.ConstructorDepth.Increment">
<summary>
Creates a new instance of the <see cref="T:PostSharp.Aspects.ConstructorDepth" /> type with a depth level that is one more than the current one.
</summary>
<returns>A new <see cref="T:PostSharp.Aspects.ConstructorDepth" />, incremented of one from the current <see cref="T:PostSharp.Aspects.ConstructorDepth" />.</returns>
</member>
<member name="P:PostSharp.Aspects.ConstructorDepth.IsZero">
<summary>
Determines whether the current depth is zero.
</summary>
</member>
<member name="M:PostSharp.Aspects.ConstructorDepth.ToString">
<summary>Returns the fully qualified type name of this instance.</summary>
<returns>A <see cref="T:System.String" /> containing a fully qualified type name.</returns>
</member>
<member name="P:PostSharp.Aspects.ConstructorDepth.Zero">
<summary>
Gets a <see cref="T:PostSharp.Aspects.ConstructorDepth" /> instance representing zero.
</summary>
</member>
<member name="T:PostSharp.Aspects.CustomAttributeIntroductionAspect">
<summary>
Aspect that, when applied to a target, adds a custom attribute to this target.
</summary>
</member>
<member name="M:PostSharp.Aspects.CustomAttributeIntroductionAspect.#ctor(PostSharp.Reflection.ObjectConstruction)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.CustomAttributeIntroductionAspect" /> by specifying an <see cref="T:PostSharp.Reflection.ObjectConstruction" />.
</summary>
<param name="attribute">Construction of the custom attribute to be added to the target.</param>
</member>
<member name="M:PostSharp.Aspects.CustomAttributeIntroductionAspect.#ctor(System.Reflection.CustomAttributeData)">
<summary>
Initializes a new <see cref="T:PostSharp.Aspects.CustomAttributeIntroductionAspect" /> by specifying a
<see cref="T:System.Reflection.CustomAttributeData" />.
</summary>
<param name="customAttributeData">Construction of the custom attribute to be added to the target.</param>
</member>
<member name="P:PostSharp.Aspects.CustomAttributeIntroductionAspect.CustomAttribute">
<summary>
Gets the construction of the custom attribute that must be applied to the target of this aspect.
</summary>
</member>
<member name="T:PostSharp.Aspects.EventInterceptionArgs">
<summary>
Arguments of handlers of aspects of the type <see cref="T:PostSharp.Aspects.EventInterceptionAspect" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.EventInterceptionArgs.AddHandler(System.Delegate)">
<summary>
Adds a handler to the event by invoking the <c>Add</c> semantic of the next node in the chain of invocation.
</summary>
<param name="handler">The handler to add to the event.</param>
</member>
<member name="P:PostSharp.Aspects.EventInterceptionArgs.Arguments">
<summary>
Gets the delegate arguments.
</summary>
</member>
<member name="P:PostSharp.Aspects.EventInterceptionArgs.Binding">
<summary>
Gets an interface that allows to invoke the next node in the chain of invocation of the intercepted method.
</summary>
</member>
<member name="P:PostSharp.Aspects.EventInterceptionArgs.Event">
<summary>
Gets the event to which the current aspect has been applied.
</summary>
</member>
<member name="P:PostSharp.Aspects.EventInterceptionArgs.Handler">
<summary>
Gets the delegate being added, removed, or invoked.
</summary>
</member>
<member name="M:PostSharp.Aspects.EventInterceptionArgs.InvokeHandler(System.Delegate,PostSharp.Aspects.Arguments)">
<summary>
Invokes a handler by calling the <c>Invoke</c> semantic of the next node in the chain of invocation.
</summary>
<param name="handler">Handler to be invoked.</param>
<param name="arguments">Arguments passed to the handler.</param>
<returns>Return value of the handler.</returns>
</member>
<member name="M:PostSharp.Aspects.EventInterceptionArgs.ProceedAddHandler">
<summary>
Proceeds with adding the <see cref="T:System.Delegate" /> to the event to which the current aspect.
This method invokes the next handler in chain.
It is typically invoked from the implementation of <see cref="M:PostSharp.Aspects.IEventInterceptionAspect.OnAddHandler(PostSharp.Aspects.EventInterceptionArgs)" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.EventInterceptionArgs.ProceedInvokeHandler">
<summary>
Proceeds with invoking the <see cref="T:System.Delegate" /> with the arguments specified in the <see cref="P:PostSharp.Aspects.EventInterceptionArgs.Arguments" /> property.
The delegate may change the <see cref="P:PostSharp.Aspects.EventInterceptionArgs.Arguments" /> and set the <see cref="P:PostSharp.Aspects.EventInterceptionArgs.ReturnValue" />.
This method invokes the next handler in chain.
It is typically invoked from the implementation of <see cref="M:PostSharp.Aspects.IEventInterceptionAspect.OnInvokeHandler(PostSharp.Aspects.EventInterceptionArgs)" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.EventInterceptionArgs.ProceedRemoveHandler">
<summary>
Proceeds with removing the <see cref="T:System.Delegate" /> from the event to which the current aspect.
This method invokes the next handler in chain.
It is typically invoked from the implementation of <see cref="M:PostSharp.Aspects.IEventInterceptionAspect.OnRemoveHandler(PostSharp.Aspects.EventInterceptionArgs)" />.
</summary>
</member>
<member name="M:PostSharp.Aspects.EventInterceptionArgs.RemoveHandler(System.Delegate)">
<summary>
Removes a handler from the event by invoking the <c>Remove</c> semantic of the next node in the chain of invocation.
</summary>
<param name="handler">Handler to be removed.</param>
</member>
<member name="P:PostSharp.Aspects.EventInterceptionArgs.ReturnValue">
<summary>
Gets the return value of the delegate.
</summary>
</member>
<member name="T:PostSharp.Aspects.EventInterceptionAspect">
<summary>
Aspect that, when applied on an event, intercepts invocations of its semantics <c>Add</c> (<see cref="M:PostSharp.Aspects.EventInterceptionAspect.OnAddHandler(PostSharp.Aspects.EventInterceptionArgs)" />),
<c>Remove</c> (<see cref="M:PostSharp.Aspects.EventInterceptionAspect.OnRemoveHandler(PostSharp.Aspects.EventInterceptionArgs)" />) and <c>Invoke</c> (<see cref="M:PostSharp.Aspects.EventInterceptionAspect.OnInvokeHandler(PostSharp.Aspects.EventInterceptionArgs)" />).
</summary>
</member>
<member name="M:PostSharp.Aspects.EventInterceptionAspect.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>PostSharp.Aspects.EventInterceptionAspect</parameter>
</include>
</markup>
</summary>
</member>
<member name="M:PostSharp.Aspects.EventInterceptionAspect.CreateAspectConfiguration">
<summary>