forked from SolrNet/SolrNet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCastle.Core.xml
4820 lines (4809 loc) · 310 KB
/
Castle.Core.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>Castle.Core</name>
</assembly>
<members>
<member name="T:Castle.Components.DictionaryAdapter.ReferenceAttribute">
<summary>
Specifies assignment by reference rather than by copying.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.IfExistsAttribute">
<summary>
Suppresses any on-demand behaviors.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.RemoveIfEmptyAttribute">
<summary>
Removes a property if null or empty string, guid or collection.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.RemoveIfAttribute">
<summary>
Removes a property if matches value.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.DictionaryBehaviorAttribute">
<summary>
Assigns a specific dictionary key.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.IDictionaryBehavior">
<summary>
Defines the contract for customizing dictionary access.
</summary>
</member>
<member name="M:Castle.Components.DictionaryAdapter.IDictionaryBehavior.Copy">
<summary>
Copies the dictionary behavior.
</summary>
<returns>null if should not be copied. Otherwise copy.</returns>
</member>
<member name="P:Castle.Components.DictionaryAdapter.IDictionaryBehavior.ExecutionOrder">
<summary>
Determines relative order to apply related behaviors.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.IDictionaryPropertySetter">
<summary>
Defines the contract for updating dictionary values.
</summary>
</member>
<member name="M:Castle.Components.DictionaryAdapter.IDictionaryPropertySetter.SetPropertyValue(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,System.Object@,Castle.Components.DictionaryAdapter.PropertyDescriptor)">
<summary>
Sets the stored dictionary value.
</summary>
<param name="dictionaryAdapter">The dictionary adapter.</param>
<param name="key">The key.</param>
<param name="value">The stored value.</param>
<param name="property">The property.</param>
<returns>true if the property should be stored.</returns>
</member>
<member name="T:Castle.Components.DictionaryAdapter.ICondition">
<summary>
Contract for value matching.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.VolatileAttribute">
<summary>
Indicates that underlying values are changeable and should not be cached.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.IDictionaryInitializer">
<summary>
Contract for dictionary initialization.
</summary>
</member>
<member name="M:Castle.Components.DictionaryAdapter.IDictionaryInitializer.Initialize(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.Object[])">
<summary>
Performs any initialization of the <see cref="T:Castle.Components.DictionaryAdapter.IDictionaryAdapter"/>
</summary>
<param name="dictionaryAdapter">The dictionary adapter.</param>
<param name="behaviors">The dictionary behaviors.</param>
</member>
<member name="T:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapterVisitor">
<summary>
Abstract implementation of <see cref="T:Castle.Components.DictionaryAdapter.IDictionaryAdapterVisitor"/>.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.IDictionaryAdapterVisitor">
<summary>
Conract for traversing a <see cref="T:Castle.Components.DictionaryAdapter.IDictionaryAdapter"/>.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.IDictionaryCreate">
<summary>
Contract for creating additional Dictionary adapters.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.IDictionaryAdapter">
<summary>
Contract for manipulating the Dictionary adapter.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.IDictionaryEdit">
<summary>
Contract for editing the Dictionary adapter.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.IDictionaryNotify">
<summary>
Contract for managing Dictionary adapter notifications.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.IDictionaryValidate">
<summary>
Contract for validating Dictionary adapter.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.IDictionaryBehaviorBuilder">
<summary>
Defines the contract for building <see cref="T:Castle.Components.DictionaryAdapter.IDictionaryBehavior"/>s.
</summary>
</member>
<member name="M:Castle.Components.DictionaryAdapter.IDictionaryBehaviorBuilder.BuildBehaviors">
<summary>
Builds the dictionary behaviors.
</summary>
<returns></returns>
</member>
<member name="T:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter">
<summary>
Abstract adapter for the <see cref="T:System.Collections.IDictionary"/> support
needed by the <see cref="T:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory"/>
</summary>
</member>
<member name="M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Add(System.Object,System.Object)">
<summary>
Adds an element with the provided key and value to the <see cref="T:System.Collections.IDictionary"></see> object.
</summary>
<param name="key">The <see cref="T:System.Object"></see> to use as the key of the element to add.</param>
<param name="value">The <see cref="T:System.Object"></see> to use as the value of the element to add.</param>
<exception cref="T:System.ArgumentException">An element with the same key already exists in the <see cref="T:System.Collections.IDictionary"></see> object. </exception>
<exception cref="T:System.ArgumentNullException">key is null. </exception>
<exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.IDictionary"></see> is read-only.-or- The <see cref="T:System.Collections.IDictionary"></see> has a fixed size. </exception>
</member>
<member name="M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Clear">
<summary>
Removes all elements from the <see cref="T:System.Collections.IDictionary"></see> object.
</summary>
<exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.IDictionary"></see> object is read-only. </exception>
</member>
<member name="M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Contains(System.Object)">
<summary>
Determines whether the <see cref="T:System.Collections.IDictionary"></see> object contains an element with the specified key.
</summary>
<param name="key">The key to locate in the <see cref="T:System.Collections.IDictionary"></see> object.</param>
<returns>
true if the <see cref="T:System.Collections.IDictionary"></see> contains an element with the key; otherwise, false.
</returns>
<exception cref="T:System.ArgumentNullException">key is null. </exception>
</member>
<member name="M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.GetEnumerator">
<summary>
Returns an <see cref="T:System.Collections.IDictionaryEnumerator"></see> object for the <see cref="T:System.Collections.IDictionary"></see> object.
</summary>
<returns>
An <see cref="T:System.Collections.IDictionaryEnumerator"></see> object for the <see cref="T:System.Collections.IDictionary"></see> object.
</returns>
</member>
<member name="M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Remove(System.Object)">
<summary>
Removes the element with the specified key from the <see cref="T:System.Collections.IDictionary"></see> object.
</summary>
<param name="key">The key of the element to remove.</param>
<exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.IDictionary"></see> object is read-only.-or- The <see cref="T:System.Collections.IDictionary"></see> has a fixed size. </exception>
<exception cref="T:System.ArgumentNullException">key is null. </exception>
</member>
<member name="M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.CopyTo(System.Array,System.Int32)">
<summary>
Copies the elements of the <see cref="T:System.Collections.ICollection"></see> to an <see cref="T:System.Array"></see>, starting at a particular <see cref="T:System.Array"></see> index.
</summary>
<param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection"></see>. The <see cref="T:System.Array"></see> must have zero-based indexing.</param>
<param name="index">The zero-based index in array at which copying begins.</param>
<exception cref="T:System.ArgumentNullException">array is null. </exception>
<exception cref="T:System.ArgumentException">The type of the source <see cref="T:System.Collections.ICollection"></see> cannot be cast automatically to the type of the destination array. </exception>
<exception cref="T:System.ArgumentOutOfRangeException">index is less than zero. </exception>
<exception cref="T:System.ArgumentException">array is multidimensional.-or- index is equal to or greater than the length of array.-or- The number of elements in the source <see cref="T:System.Collections.ICollection"></see> is greater than the available space from index to the end of the destination array. </exception>
</member>
<member name="M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.System#Collections#IEnumerable#GetEnumerator">
<summary>
Returns an enumerator that iterates through a collection.
</summary>
<returns>
An <see cref="T:System.Collections.IEnumerator"></see> object that can be used to iterate through the collection.
</returns>
</member>
<member name="P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.IsFixedSize">
<summary>
Gets a value indicating whether the <see cref="T:System.Collections.IDictionary"></see> object has a fixed size.
</summary>
<value></value>
<returns>true if the <see cref="T:System.Collections.IDictionary"></see> object has a fixed size; otherwise, false.</returns>
</member>
<member name="P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.IsReadOnly">
<summary>
Gets a value indicating whether the <see cref="T:System.Collections.IDictionary"></see> object is read-only.
</summary>
<value></value>
<returns>true if the <see cref="T:System.Collections.IDictionary"></see> object is read-only; otherwise, false.</returns>
</member>
<member name="P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Keys">
<summary>
Gets an <see cref="T:System.Collections.ICollection"></see> object containing the keys of the <see cref="T:System.Collections.IDictionary"></see> object.
</summary>
<value></value>
<returns>An <see cref="T:System.Collections.ICollection"></see> object containing the keys of the <see cref="T:System.Collections.IDictionary"></see> object.</returns>
</member>
<member name="P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Values">
<summary>
Gets an <see cref="T:System.Collections.ICollection"></see> object containing the values in the <see cref="T:System.Collections.IDictionary"></see> object.
</summary>
<value></value>
<returns>An <see cref="T:System.Collections.ICollection"></see> object containing the values in the <see cref="T:System.Collections.IDictionary"></see> object.</returns>
</member>
<member name="P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Item(System.Object)">
<summary>
Gets or sets the <see cref="T:System.Object"/> with the specified key.
</summary>
<value></value>
</member>
<member name="P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Count">
<summary>
Gets the number of elements contained in the <see cref="T:System.Collections.ICollection"></see>.
</summary>
<value></value>
<returns>The number of elements contained in the <see cref="T:System.Collections.ICollection"></see>.</returns>
</member>
<member name="P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.IsSynchronized">
<summary>
Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe).
</summary>
<value></value>
<returns>true if access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false.</returns>
</member>
<member name="P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.SyncRoot">
<summary>
Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.
</summary>
<value></value>
<returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</returns>
</member>
<member name="T:Castle.Components.DictionaryAdapter.BindingList`1">
<summary>
Provides a generic collection that supports data binding.
</summary>
<remarks>
This class wraps the CLR <see cref="T:System.ComponentModel.BindingList`1"/>
in order to implement the Castle-specific <see cref="T:Castle.Components.DictionaryAdapter.IBindingList`1"/>.
</remarks>
<typeparam name="T">The type of elements in the list.</typeparam>
</member>
<member name="M:Castle.Components.DictionaryAdapter.BindingList`1.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Castle.Components.DictionaryAdapter.BindingList`1"/> class
using default values.
</summary>
</member>
<member name="M:Castle.Components.DictionaryAdapter.BindingList`1.#ctor(System.Collections.Generic.IList{`0})">
<summary>
Initializes a new instance of the <see cref="T:Castle.Components.DictionaryAdapter.BindingList`1"/> class
with the specified list.
</summary>
<param name="list">
An <see cref="T:System.Collections.Generic.IList`1"/> of items
to be contained in the <see cref="T:Castle.Components.DictionaryAdapter.BindingList`1"/>.
</param>
</member>
<member name="M:Castle.Components.DictionaryAdapter.BindingList`1.#ctor(System.ComponentModel.BindingList{`0})">
<summary>
Initializes a new instance of the <see cref="T:Castle.Components.DictionaryAdapter.BindingList`1"/> class
wrapping the specified <see cref="T:System.ComponentModel.BindingList`1"/> instance.
</summary>
<param name="list">
A <see cref="T:System.ComponentModel.BindingList`1"/>
to be wrapped by the <see cref="T:Castle.Components.DictionaryAdapter.BindingList`1"/>.
</param>
</member>
<member name="T:Castle.Components.DictionaryAdapter.IDictionaryPropertyGetter">
<summary>
Defines the contract for retrieving dictionary values.
</summary>
</member>
<member name="M:Castle.Components.DictionaryAdapter.IDictionaryPropertyGetter.GetPropertyValue(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,System.Object,Castle.Components.DictionaryAdapter.PropertyDescriptor,System.Boolean)">
<summary>
Gets the effective dictionary value.
</summary>
<param name="dictionaryAdapter">The dictionary adapter.</param>
<param name="key">The key.</param>
<param name="storedValue">The stored value.</param>
<param name="property">The property.</param>
<param name="ifExists">true if return only existing.</param>
<returns>The effective property value.</returns>
</member>
<member name="M:Castle.Components.DictionaryAdapter.Xml.XmlAdapter.#ctor(Castle.Components.DictionaryAdapter.Xml.IXmlNode,Castle.Components.DictionaryAdapter.Xml.XmlReferenceManager)">
<summary>
Initializes a new instance of the <see cref="T:Castle.Components.DictionaryAdapter.Xml.XmlAdapter"/> class
that represents a child object in a larger object graph.
</summary>
<param name="node"></param>
<param name="references"></param>
</member>
<member name="T:Castle.Components.DictionaryAdapter.IDictionaryMetaInitializer">
<summary>
Contract for dictionary meta-data initialization.
</summary>
</member>
<member name="M:Castle.Components.DictionaryAdapter.IDictionaryMetaInitializer.Initialize(Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory,Castle.Components.DictionaryAdapter.DictionaryAdapterMeta)">
<summary>
Performs any initialization of the dictionary adapter meta-data.
</summary>
<param name="factory">The dictionary adapter factory.</param>
<param name="dictionaryMeta">The dictionary adapter meta.</param>
</member>
<member name="M:Castle.Core.Internal.CollectionExtensions.IsNullOrEmpty(System.Collections.IEnumerable)">
<summary>
Checks whether or not collection is null or empty. Assumes colleciton can be safely enumerated multiple times.
</summary>
<param name = "this"></param>
<returns></returns>
</member>
<member name="F:Castle.Core.Internal.InternalsVisible.ToCastleCore">
<summary>
Constant to use when making assembly internals visible to Castle.Core
<c>[assembly: InternalsVisibleTo(CoreInternalsVisible.ToCastleCore)]</c>
</summary>
</member>
<member name="F:Castle.Core.Internal.InternalsVisible.ToDynamicProxyGenAssembly2">
<summary>
Constant to use when making assembly internals visible to proxy types generated by DynamicProxy. Required when proxying internal types.
<c>[assembly: InternalsVisibleTo(CoreInternalsVisible.ToDynamicProxyGenAssembly2)]</c>
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.ComponentAttribute">
<summary>
Identifies a property should be represented as a nested component.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.IDictionaryKeyBuilder">
<summary>
Defines the contract for building typed dictionary keys.
</summary>
</member>
<member name="M:Castle.Components.DictionaryAdapter.IDictionaryKeyBuilder.GetKey(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,Castle.Components.DictionaryAdapter.PropertyDescriptor)">
<summary>
Builds the specified key.
</summary>
<param name="dictionaryAdapter">The dictionary adapter.</param>
<param name="key">The current key.</param>
<param name="property">The property.</param>
<returns>The updated key</returns>
</member>
<member name="P:Castle.Components.DictionaryAdapter.ComponentAttribute.NoPrefix">
<summary>
Applies no prefix.
</summary>
</member>
<member name="P:Castle.Components.DictionaryAdapter.ComponentAttribute.Prefix">
<summary>
Gets or sets the prefix.
</summary>
<value>The prefix.</value>
</member>
<member name="T:Castle.Components.DictionaryAdapter.DictionaryAdapterAttribute">
<summary>
Identifies the dictionary adapter types.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.FetchAttribute">
<summary>
Identifies an interface or property to be pre-fetched.
</summary>
</member>
<member name="M:Castle.Components.DictionaryAdapter.FetchAttribute.#ctor">
<summary>
Instructs fetching to occur.
</summary>
</member>
<member name="M:Castle.Components.DictionaryAdapter.FetchAttribute.#ctor(System.Boolean)">
<summary>
Instructs fetching according to <paramref name="fetch"/>
</summary>
<param name="fetch"></param>
</member>
<member name="P:Castle.Components.DictionaryAdapter.FetchAttribute.Fetch">
<summary>
Gets whether or not fetching should occur.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.GroupAttribute">
<summary>
Assigns a property to a group.
</summary>
</member>
<member name="M:Castle.Components.DictionaryAdapter.GroupAttribute.#ctor(System.Object)">
<summary>
Constructs a group assignment.
</summary>
<param name="group">The group name.</param>
</member>
<member name="M:Castle.Components.DictionaryAdapter.GroupAttribute.#ctor(System.Object[])">
<summary>
Constructs a group assignment.
</summary>
<param name="group">The group name.</param>
</member>
<member name="P:Castle.Components.DictionaryAdapter.GroupAttribute.Group">
<summary>
Gets the group the property is assigned to.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.KeyAttribute">
<summary>
Assigns a specific dictionary key.
</summary>
</member>
<member name="M:Castle.Components.DictionaryAdapter.KeyAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Castle.Components.DictionaryAdapter.KeyAttribute"/> class.
</summary>
<param name="key">The key.</param>
</member>
<member name="M:Castle.Components.DictionaryAdapter.KeyAttribute.#ctor(System.String[])">
<summary>
Initializes a new instance of the <see cref="T:Castle.Components.DictionaryAdapter.KeyAttribute"/> class.
</summary>
<param name="keys">The compound key.</param>
</member>
<member name="T:Castle.Components.DictionaryAdapter.KeyPrefixAttribute">
<summary>
Assigns a prefix to the keyed properties of an interface.
</summary>
</member>
<member name="M:Castle.Components.DictionaryAdapter.KeyPrefixAttribute.#ctor">
<summary>
Initializes a default instance of the <see cref="T:Castle.Components.DictionaryAdapter.KeyPrefixAttribute"/> class.
</summary>
</member>
<member name="M:Castle.Components.DictionaryAdapter.KeyPrefixAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Castle.Components.DictionaryAdapter.KeyPrefixAttribute"/> class.
</summary>
<param name="keyPrefix">The prefix for the keyed properties of the interface.</param>
</member>
<member name="P:Castle.Components.DictionaryAdapter.KeyPrefixAttribute.KeyPrefix">
<summary>
Gets the prefix key added to the properties of the interface.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.KeySubstitutionAttribute">
<summary>
Substitutes part of key with another string.
</summary>
</member>
<member name="M:Castle.Components.DictionaryAdapter.KeySubstitutionAttribute.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Castle.Components.DictionaryAdapter.KeySubstitutionAttribute"/> class.
</summary>
<param name="oldValue">The old value.</param>
<param name="newValue">The new value.</param>
</member>
<member name="T:Castle.Components.DictionaryAdapter.MultiLevelEditAttribute">
<summary>
Requests support for multi-level editing.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.NewGuidAttribute">
<summary>
Generates a new GUID on demand.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.OnDemandAttribute">
<summary>
Support for on-demand value resolution.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.PropagateNotificationsAttribute">
<summary>
Suppress property change notifications.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.StringFormatAttribute">
<summary>
Provides simple string formatting from existing properties.
</summary>
</member>
<member name="P:Castle.Components.DictionaryAdapter.StringFormatAttribute.Format">
<summary>
Gets the string format.
</summary>
</member>
<member name="P:Castle.Components.DictionaryAdapter.StringFormatAttribute.Properties">
<summary>
Gets the format properties.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.StringListAttribute">
<summary>
Identifies a property should be represented as a delimited string value.
</summary>
</member>
<member name="P:Castle.Components.DictionaryAdapter.StringListAttribute.Separator">
<summary>
Gets the separator.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.StringValuesAttribute">
<summary>
Converts all properties to strings.
</summary>
</member>
<member name="P:Castle.Components.DictionaryAdapter.StringValuesAttribute.Format">
<summary>
Gets or sets the format.
</summary>
<value>The format.</value>
</member>
<member name="T:Castle.Components.DictionaryAdapter.SuppressNotificationsAttribute">
<summary>
Suppress property change notifications.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.IPropertyDescriptorInitializer">
<summary>
Contract for property descriptor initialization.
</summary>
</member>
<member name="M:Castle.Components.DictionaryAdapter.IPropertyDescriptorInitializer.Initialize(Castle.Components.DictionaryAdapter.PropertyDescriptor,System.Object[])">
<summary>
Performs any initialization of the <see cref="T:Castle.Components.DictionaryAdapter.PropertyDescriptor"/>
</summary>
<param name="propertyDescriptor">The property descriptor.</param>
<param name="behaviors">The property behaviors.</param>
</member>
<member name="T:Castle.Components.DictionaryAdapter.TypeKeyPrefixAttribute">
<summary>
Assigns a prefix to the keyed properties using the interface name.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.DefaultPropertyGetter">
<summary>
Manages conversion between property values.
</summary>
</member>
<member name="M:Castle.Components.DictionaryAdapter.DefaultPropertyGetter.#ctor(System.ComponentModel.TypeConverter)">
<summary>
Initializes a new instance of the <see cref="T:Castle.Components.DictionaryAdapter.DefaultPropertyGetter"/> class.
</summary>
<param name="converter">The converter.</param>
</member>
<member name="M:Castle.Components.DictionaryAdapter.DefaultPropertyGetter.GetPropertyValue(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,System.Object,Castle.Components.DictionaryAdapter.PropertyDescriptor,System.Boolean)">
<summary>
Gets the effective dictionary value.
</summary>
<param name="dictionaryAdapter">The dictionary adapter.</param>
<param name="key">The key.</param>
<param name="storedValue">The stored value.</param>
<param name="property">The property.</param>
<param name="ifExists">true if return only existing.</param>
<returns>The effective property value.</returns>
</member>
<member name="P:Castle.Components.DictionaryAdapter.DefaultPropertyGetter.ExecutionOrder">
<summary>
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory">
<summary>
Uses Reflection.Emit to expose the properties of a dictionary
through a dynamic implementation of a typed interface.
</summary>
</member>
<member name="T:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory">
<summary>
Defines the contract for building typed dictionary adapters.
</summary>
</member>
<member name="M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapter``1(System.Collections.IDictionary)">
<summary>
Gets a typed adapter bound to the <see cref="T:System.Collections.IDictionary"/>.
</summary>
<typeparam name="T">The typed interface.</typeparam>
<param name="dictionary">The underlying source of properties.</param>
<returns>An implementation of the typed interface bound to the dictionary.</returns>
<remarks>
The type represented by T must be an interface with properties.
</remarks>
</member>
<member name="M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapter(System.Type,System.Collections.IDictionary)">
<summary>
Gets a typed adapter bound to the <see cref="T:System.Collections.IDictionary"/>.
</summary>
<param name="type">The typed interface.</param>
<param name="dictionary">The underlying source of properties.</param>
<returns>An implementation of the typed interface bound to the dictionary.</returns>
<remarks>
The type represented by T must be an interface with properties.
</remarks>
</member>
<member name="M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapter(System.Type,System.Collections.IDictionary,Castle.Components.DictionaryAdapter.PropertyDescriptor)">
<summary>
Gets a typed adapter bound to the <see cref="T:System.Collections.IDictionary"/>.
</summary>
<param name="type">The typed interface.</param>
<param name="dictionary">The underlying source of properties.</param>
<param name="descriptor">The property descriptor.</param>
<returns>An implementation of the typed interface bound to the dictionary.</returns>
<remarks>
The type represented by T must be an interface with properties.
</remarks>
</member>
<member name="M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapter``1(System.Collections.Specialized.NameValueCollection)">
<summary>
Gets a typed adapter bound to the <see cref="T:System.Collections.Specialized.NameValueCollection"/>.
</summary>
<typeparam name="T">The typed interface.</typeparam>
<param name="nameValues">The underlying source of properties.</param>
<returns>An implementation of the typed interface bound to the namedValues.</returns>
<remarks>
The type represented by T must be an interface with properties.
</remarks>
</member>
<member name="M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapter(System.Type,System.Collections.Specialized.NameValueCollection)">
<summary>
Gets a typed adapter bound to the <see cref="T:System.Collections.Specialized.NameValueCollection"/>.
</summary>
<param name="type">The typed interface.</param>
<param name="nameValues">The underlying source of properties.</param>
<returns>An implementation of the typed interface bound to the namedValues.</returns>
<remarks>
The type represented by T must be an interface with properties.
</remarks>
</member>
<member name="M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapter``1(System.Xml.XmlNode)">
<summary>
Gets a typed adapter bound to the <see cref="T:System.Xml.XmlNode"/>.
</summary>
<typeparam name="T">The typed interface.</typeparam>
<param name="xmlNode">The underlying source of properties.</param>
<returns>An implementation of the typed interface bound to the <see cref="T:System.Xml.XmlNode"/>.</returns>
<remarks>
The type represented by T must be an interface with properties.
</remarks>
</member>
<member name="M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapter(System.Type,System.Xml.XmlNode)">
<summary>
Gets a typed adapter bound to the <see cref="T:System.Xml.XmlNode"/>.
</summary>
<param name="type">The typed interface.</param>
<param name="xmlNode">The underlying source of properties.</param>
<returns>An implementation of the typed interface bound to the <see cref="T:System.Xml.XmlNode"/>.</returns>
<remarks>
The type represented by T must be an interface with properties.
</remarks>
</member>
<member name="M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapterMeta(System.Type)">
<summary>
Gets the <see cref="T:Castle.Components.DictionaryAdapter.DictionaryAdapterMeta"/> associated with the type.
</summary>
<param name="type">The typed interface.</param>
<returns>The adapter meta-data.</returns>
</member>
<member name="M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapterMeta(System.Type,Castle.Components.DictionaryAdapter.PropertyDescriptor)">
<summary>
Gets the <see cref="T:Castle.Components.DictionaryAdapter.DictionaryAdapterMeta"/> associated with the type.
</summary>
<param name="type">The typed interface.</param>
<param name="descriptor">The property descriptor.</param>
<returns>The adapter meta-data.</returns>
</member>
<member name="M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter``1(System.Collections.IDictionary)">
<inheritdoc />
</member>
<member name="M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter(System.Type,System.Collections.IDictionary)">
<inheritdoc />
</member>
<member name="M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter(System.Type,System.Collections.IDictionary,Castle.Components.DictionaryAdapter.PropertyDescriptor)">
<inheritdoc />
</member>
<member name="M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter``2(System.Collections.Generic.IDictionary{System.String,``1})">
<inheritdoc />
</member>
<member name="M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter``1(System.Type,System.Collections.Generic.IDictionary{System.String,``0})">
<inheritdoc />
</member>
<member name="M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter``1(System.Collections.Specialized.NameValueCollection)">
<inheritdoc />
</member>
<member name="M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter(System.Type,System.Collections.Specialized.NameValueCollection)">
<inheritdoc />
</member>
<member name="M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter``1(System.Xml.XmlNode)">
<inheritdoc />
</member>
<member name="M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter(System.Type,System.Xml.XmlNode)">
<inheritdoc />
</member>
<member name="M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapterMeta(System.Type)">
<inheritdoc />
</member>
<member name="M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapterMeta(System.Type,Castle.Components.DictionaryAdapter.PropertyDescriptor)">
<inheritdoc />
</member>
<member name="T:Castle.Components.DictionaryAdapter.PropertyDescriptor">
<summary>
Describes a dictionary property.
</summary>
</member>
<member name="M:Castle.Components.DictionaryAdapter.PropertyDescriptor.#ctor">
<summary>
Initializes an empty <see cref="T:Castle.Components.DictionaryAdapter.PropertyDescriptor"/> class.
</summary>
</member>
<member name="M:Castle.Components.DictionaryAdapter.PropertyDescriptor.#ctor(System.Reflection.PropertyInfo,System.Object[])">
<summary>
Initializes a new instance of the <see cref="T:Castle.Components.DictionaryAdapter.PropertyDescriptor"/> class.
</summary>
<param name="property">The property.</param>
<param name="behaviors">The property behaviors.</param>
</member>
<member name="M:Castle.Components.DictionaryAdapter.PropertyDescriptor.#ctor(System.Object[])">
<summary>
Initializes a new instance <see cref="T:Castle.Components.DictionaryAdapter.PropertyDescriptor"/> class.
</summary>
</member>
<member name="M:Castle.Components.DictionaryAdapter.PropertyDescriptor.#ctor(Castle.Components.DictionaryAdapter.PropertyDescriptor,System.Boolean)">
<summary>
Copies an existinginstance of the <see cref="T:Castle.Components.DictionaryAdapter.PropertyDescriptor"/> class.
</summary>
<param name="source"></param>
<param name="copyBehaviors"></param>
</member>
<member name="M:Castle.Components.DictionaryAdapter.PropertyDescriptor.GetKey(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,Castle.Components.DictionaryAdapter.PropertyDescriptor)">
<summary>
Gets the key.
</summary>
<param name="dictionaryAdapter">The dictionary adapter.</param>
<param name="key">The key.</param>
<param name="descriptor">The descriptor.</param>
<returns></returns>
</member>
<member name="M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddKeyBuilder(Castle.Components.DictionaryAdapter.IDictionaryKeyBuilder[])">
<summary>
Adds the key builder.
</summary>
<param name="builders">The builder.</param>
</member>
<member name="M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddKeyBuilders(System.Collections.Generic.IEnumerable{Castle.Components.DictionaryAdapter.IDictionaryKeyBuilder})">
<summary>
Adds the key builders.
</summary>
<param name="builders">The builders.</param>
</member>
<member name="M:Castle.Components.DictionaryAdapter.PropertyDescriptor.CopyKeyBuilders(Castle.Components.DictionaryAdapter.PropertyDescriptor)">
<summary>
Copies the key builders to the other <see cref="T:Castle.Components.DictionaryAdapter.PropertyDescriptor"/>
</summary>
<param name="other"></param>
<returns></returns>
</member>
<member name="M:Castle.Components.DictionaryAdapter.PropertyDescriptor.GetPropertyValue(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,System.Object,Castle.Components.DictionaryAdapter.PropertyDescriptor,System.Boolean)">
<summary>
Gets the property value.
</summary>
<param name="dictionaryAdapter">The dictionary adapter.</param>
<param name="key">The key.</param>
<param name="storedValue">The stored value.</param>
<param name="descriptor">The descriptor.</param>
<param name="ifExists">true if return only existing.</param>
<returns></returns>
</member>
<member name="M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddGetter(Castle.Components.DictionaryAdapter.IDictionaryPropertyGetter[])">
<summary>
Adds the dictionary getter.
</summary>
<param name="getters">The getter.</param>
</member>
<member name="M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddGetters(System.Collections.Generic.IEnumerable{Castle.Components.DictionaryAdapter.IDictionaryPropertyGetter})">
<summary>
Adds the dictionary getters.
</summary>
<param name="gets">The getters.</param>
</member>
<member name="M:Castle.Components.DictionaryAdapter.PropertyDescriptor.CopyGetters(Castle.Components.DictionaryAdapter.PropertyDescriptor)">
<summary>
Copies the property getters to the other <see cref="T:Castle.Components.DictionaryAdapter.PropertyDescriptor"/>
</summary>
<param name="other"></param>
<returns></returns>
</member>
<member name="M:Castle.Components.DictionaryAdapter.PropertyDescriptor.SetPropertyValue(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,System.Object@,Castle.Components.DictionaryAdapter.PropertyDescriptor)">
<summary>
Sets the property value.
</summary>
<param name="dictionaryAdapter">The dictionary adapter.</param>
<param name="key">The key.</param>
<param name="value">The value.</param>
<param name="descriptor">The descriptor.</param>
<returns></returns>
</member>
<member name="M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddSetter(Castle.Components.DictionaryAdapter.IDictionaryPropertySetter[])">
<summary>
Adds the dictionary setter.
</summary>
<param name="setters">The setter.</param>
</member>
<member name="M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddSetters(System.Collections.Generic.IEnumerable{Castle.Components.DictionaryAdapter.IDictionaryPropertySetter})">
<summary>
Adds the dictionary setters.
</summary>
<param name="sets">The setters.</param>
</member>
<member name="M:Castle.Components.DictionaryAdapter.PropertyDescriptor.CopySetters(Castle.Components.DictionaryAdapter.PropertyDescriptor)">
<summary>
Copies the property setters to the other <see cref="T:Castle.Components.DictionaryAdapter.PropertyDescriptor"/>
</summary>
<param name="other"></param>
<returns></returns>
</member>
<member name="M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddBehavior(Castle.Components.DictionaryAdapter.IDictionaryBehavior[])">
<summary>
Adds the behaviors.
</summary>
<param name="behaviors"></param>
<returns></returns>
</member>
<member name="M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddBehaviors(System.Collections.Generic.IEnumerable{Castle.Components.DictionaryAdapter.IDictionaryBehavior})">
<summary>
Adds the behaviors.
</summary>
<param name="behaviors"></param>
<returns></returns>
</member>
<member name="M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddBehaviors(Castle.Components.DictionaryAdapter.IDictionaryBehaviorBuilder[])">
<summary>
Adds the behaviors from the builders.
</summary>
<param name="builders"></param>
<returns></returns>
</member>
<member name="M:Castle.Components.DictionaryAdapter.PropertyDescriptor.CopyBehaviors(Castle.Components.DictionaryAdapter.PropertyDescriptor)">
<summary>
Copies the behaviors to the other <see cref="T:Castle.Components.DictionaryAdapter.PropertyDescriptor"/>
</summary>
<param name="other"></param>
<returns></returns>
</member>
<member name="M:Castle.Components.DictionaryAdapter.PropertyDescriptor.Copy">
<summary>
Copies the <see cref="T:Castle.Components.DictionaryAdapter.PropertyDescriptor"/>
</summary>
<returns></returns>
</member>
<member name="P:Castle.Components.DictionaryAdapter.PropertyDescriptor.ExecutionOrder">
<summary>
</summary>
</member>
<member name="P:Castle.Components.DictionaryAdapter.PropertyDescriptor.PropertyName">
<summary>
Gets the property name.
</summary>
</member>
<member name="P:Castle.Components.DictionaryAdapter.PropertyDescriptor.PropertyType">
<summary>
Gets the property type.
</summary>
</member>
<member name="P:Castle.Components.DictionaryAdapter.PropertyDescriptor.Property">
<summary>
Gets the property.
</summary>
<value>The property.</value>
</member>
<member name="P:Castle.Components.DictionaryAdapter.PropertyDescriptor.IsDynamicProperty">
<summary>
Returns true if the property is dynamic.
</summary>
</member>
<member name="P:Castle.Components.DictionaryAdapter.PropertyDescriptor.State">
<summary>
Gets additional state.
</summary>
</member>
<member name="P:Castle.Components.DictionaryAdapter.PropertyDescriptor.Fetch">
<summary>
Determines if property should be fetched.
</summary>
</member>
<member name="P:Castle.Components.DictionaryAdapter.PropertyDescriptor.IfExists">
<summary>
Determines if property must exist first.
</summary>
</member>
<member name="P:Castle.Components.DictionaryAdapter.PropertyDescriptor.SuppressNotifications">
<summary>
Determines if notifications should occur.
</summary>
</member>
<member name="P:Castle.Components.DictionaryAdapter.PropertyDescriptor.Behaviors">
<summary>
Gets the property behaviors.
</summary>
</member>
<member name="P:Castle.Components.DictionaryAdapter.PropertyDescriptor.TypeConverter">
<summary>
Gets the type converter.
</summary>
<value>The type converter.</value>
</member>
<member name="P:Castle.Components.DictionaryAdapter.PropertyDescriptor.ExtendedProperties">
<summary>
Gets the extended properties.
</summary>
</member>
<member name="P:Castle.Components.DictionaryAdapter.PropertyDescriptor.KeyBuilders">
<summary>
Gets the key builders.
</summary>
<value>The key builders.</value>
</member>
<member name="P:Castle.Components.DictionaryAdapter.PropertyDescriptor.Setters">
<summary>
Gets the setter.
</summary>
<value>The setter.</value>
</member>
<member name="P:Castle.Components.DictionaryAdapter.PropertyDescriptor.Getters">
<summary>
Gets the getter.
</summary>
<value>The getter.</value>
</member>
<member name="M:Castle.Components.DictionaryAdapter.DictionaryDescriptor.AddInitializer(Castle.Components.DictionaryAdapter.IDictionaryInitializer[])">
<summary>
Adds the dictionary initializers.
</summary>
<param name="inits">The initializers.</param>
</member>
<member name="M:Castle.Components.DictionaryAdapter.DictionaryDescriptor.AddInitializers(System.Collections.Generic.IEnumerable{Castle.Components.DictionaryAdapter.IDictionaryInitializer})">
<summary>
Adds the dictionary initializers.
</summary>
<param name="inits">The initializers.</param>
</member>
<member name="M:Castle.Components.DictionaryAdapter.DictionaryDescriptor.CopyInitializers(Castle.Components.DictionaryAdapter.DictionaryDescriptor)">
<summary>
Copies the initializers to the other <see cref="T:Castle.Components.DictionaryAdapter.PropertyDescriptor"/>
</summary>
<param name="other"></param>
<returns></returns>
</member>
<member name="M:Castle.Components.DictionaryAdapter.DictionaryDescriptor.AddMetaInitializer(Castle.Components.DictionaryAdapter.IDictionaryMetaInitializer[])">
<summary>
Adds the dictionary meta-data initializers.
</summary>
<param name="inits">The meta-data initializers.</param>
</member>
<member name="M:Castle.Components.DictionaryAdapter.DictionaryDescriptor.AddMetaInitializers(System.Collections.Generic.IEnumerable{Castle.Components.DictionaryAdapter.IDictionaryMetaInitializer})">
<summary>
Adds the dictionary meta-data initializers.
</summary>
<param name="inits">The meta-data initializers.</param>
</member>
<member name="M:Castle.Components.DictionaryAdapter.DictionaryDescriptor.CopyMetaInitializers(Castle.Components.DictionaryAdapter.DictionaryDescriptor)">
<summary>
Copies the meta-initializers to the other <see cref="T:Castle.Components.DictionaryAdapter.PropertyDescriptor"/>
</summary>
<param name="other"></param>
<returns></returns>
</member>
<member name="P:Castle.Components.DictionaryAdapter.DictionaryDescriptor.Initializers">
<summary>
Gets the initializers.
</summary>
<value>The initializers.</value>
</member>
<member name="P:Castle.Components.DictionaryAdapter.DictionaryDescriptor.MetaInitializers">
<summary>
Gets the meta-data initializers.
</summary>
<value>The meta-data initializers.</value>
</member>
<member name="T:Castle.Components.DictionaryAdapter.IDictionaryValidator">
<summary>
Contract for dictionary validation.
</summary>
</member>
<member name="M:Castle.Components.DictionaryAdapter.IDictionaryValidator.IsValid(Castle.Components.DictionaryAdapter.IDictionaryAdapter)">