blob: c84e7ecff238538cb1a7393d62ced47b6387eb10 (
plain)
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
|
<?xml version="1.0"?>
<doc>
<assembly>
<name>Castle.Components.DictionaryAdapter</name>
</assembly>
<members>
<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 dictionary.
</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 the T must be an interface with properties.
</remarks>
</member>
<member name="M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter``1(System.Collections.IDictionary)">
<summary>
Gets a typed adapter bound to the dictionary.
</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="T:Castle.Components.DictionaryAdapter.DictionaryAdapterKeyPrefixAttribute">
<summary>
Assigns a prefix to the keyed properties of an interface.
</summary>
</member>
<member name="M:Castle.Components.DictionaryAdapter.DictionaryAdapterKeyPrefixAttribute.#ctor">
<summary>
Initializes a default instance of the <see cref="T:Castle.Components.DictionaryAdapter.DictionaryAdapterKeyPrefixAttribute"/> class.
</summary>
</member>
<member name="M:Castle.Components.DictionaryAdapter.DictionaryAdapterKeyPrefixAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Castle.Components.DictionaryAdapter.DictionaryAdapterKeyPrefixAttribute"/> class.
</summary>
<param name="keyPrefix">The prefix for the keyed properties of the interface.</param>
</member>
<member name="P:Castle.Components.DictionaryAdapter.DictionaryAdapterKeyPrefixAttribute.KeyPrefix">
<summary>
Gets the prefix key added to the properties of the interface.
</summary>
</member>
</members>
</doc>
|