forked from herfulnerful/DreamWorld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSystem.Composition.Runtime.xml
326 lines (326 loc) · 18.2 KB
/
System.Composition.Runtime.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
<?xml version="1.0"?>
<doc>
<assembly>
<name>System.Composition.Runtime</name>
</assembly>
<members>
<member name="T:System.Composition.CompositionContext">
<summary>
Provides retrieval of exports from the composition.
</summary>
</member>
<member name="M:System.Composition.CompositionContext.TryGetExport(System.Composition.Hosting.Core.CompositionContract,System.Object@)">
<summary>
Retrieve the single <paramref name="contract"/> instance from the
<see cref="T:System.Composition.CompositionContext"/>.
</summary>
<param name="contract">The contract to retrieve.</param>
<returns>An instance of the export.</returns>
<param name="export">The export if available, otherwise, null.</param>
<exception cref="T:System.Composition.Hosting.CompositionFailedException" />
</member>
<member name="M:System.Composition.CompositionContext.GetExport``1">
<summary>
Retrieve the single <typeparamref name="TExport"/> instance from the
<see cref="T:System.Composition.CompositionContext"/>.
</summary>
<typeparam name="TExport">The type of the export to retrieve.</typeparam>
<returns>An instance of the export.</returns>
<exception cref="T:System.Composition.Hosting.CompositionFailedException" />
</member>
<member name="M:System.Composition.CompositionContext.GetExport``1(System.String)">
<summary>
Retrieve the single <typeparamref name="TExport"/> instance from the
<see cref="T:System.Composition.CompositionContext"/>.
</summary>
<typeparam name="TExport">The type of the export to retrieve.</typeparam>
<param name="contractName">Optionally, a discriminator that constrains the selection of the export.</param>
<returns>An instance of the export.</returns>
<exception cref="T:System.Composition.Hosting.CompositionFailedException" />
</member>
<member name="M:System.Composition.CompositionContext.TryGetExport(System.Type,System.Object@)">
<summary>
Retrieve the single <paramref name="exportType"/> instance from the
<see cref="T:System.Composition.CompositionContext"/>.
</summary>
<param name="exportType">The type of the export to retrieve.</param>
<returns>An instance of the export.</returns>
<param name="export">The export if available, otherwise, null.</param>
<exception cref="T:System.Composition.Hosting.CompositionFailedException" />
</member>
<member name="M:System.Composition.CompositionContext.TryGetExport(System.Type,System.String,System.Object@)">
<summary>
Retrieve the single <paramref name="exportType"/> instance from the
<see cref="T:System.Composition.CompositionContext"/>.
</summary>
<param name="exportType">The type of the export to retrieve.</param>
<param name="contractName">Optionally, a discriminator that constrains the selection of the export.</param>
<returns>An instance of the export.</returns>
<param name="export">The export if available, otherwise, null.</param>
<exception cref="T:System.Composition.Hosting.CompositionFailedException" />
</member>
<member name="M:System.Composition.CompositionContext.TryGetExport``1(``0@)">
<summary>
Retrieve the single <typeparamref name="TExport"/> instance from the
<see cref="T:System.Composition.CompositionContext"/>.
</summary>
<typeparam name="TExport">The type of the export to retrieve.</typeparam>
<returns>An instance of the export.</returns>
<param name="export">The export if available, otherwise, null.</param>
<exception cref="T:System.Composition.Hosting.CompositionFailedException" />
</member>
<member name="M:System.Composition.CompositionContext.TryGetExport``1(System.String,``0@)">
<summary>
Retrieve the single <typeparamref name="TExport"/> instance from the
<see cref="T:System.Composition.CompositionContext"/>.
</summary>
<typeparam name="TExport">The type of the export to retrieve.</typeparam>
<param name="contractName">Optionally, a discriminator that constrains the selection of the export.</param>
<returns>An instance of the export.</returns>
<param name="export">The export if available, otherwise, null.</param>
<exception cref="T:System.Composition.Hosting.CompositionFailedException" />
</member>
<member name="M:System.Composition.CompositionContext.GetExport(System.Type)">
<summary>
Retrieve the single <paramref name="exportType"/> instance from the
<see cref="T:System.Composition.CompositionContext"/>.
</summary>
<param name="exportType">The type of the export to retrieve.</param>
<returns>An instance of the export.</returns>
<exception cref="T:System.Composition.Hosting.CompositionFailedException" />
</member>
<member name="M:System.Composition.CompositionContext.GetExport(System.Type,System.String)">
<summary>
Retrieve the single <paramref name="exportType"/> instance from the
<see cref="T:System.Composition.CompositionContext"/>.
</summary>
<param name="exportType">The type of the export to retrieve.</param>
<param name="contractName">Optionally, a discriminator that constrains the selection of the export.</param>
<returns>An instance of the export.</returns>
<exception cref="T:System.Composition.Hosting.CompositionFailedException" />
</member>
<member name="M:System.Composition.CompositionContext.GetExport(System.Composition.Hosting.Core.CompositionContract)">
<summary>
Retrieve the single <paramref name="contract"/> instance from the
<see cref="T:System.Composition.CompositionContext"/>.
</summary>
<param name="contract">The contract of the export to retrieve.</param>
<returns>An instance of the export.</returns>
<exception cref="T:System.Composition.Hosting.CompositionFailedException" />
</member>
<member name="M:System.Composition.CompositionContext.GetExports(System.Type)">
<summary>
Retrieve the single <paramref name="exportType"/> instance from the
<see cref="T:System.Composition.CompositionContext"/>.
</summary>
<param name="exportType">The type of the export to retrieve.</param>
<exception cref="T:System.Composition.Hosting.CompositionFailedException" />
</member>
<member name="M:System.Composition.CompositionContext.GetExports(System.Type,System.String)">
<summary>
Retrieve the single <paramref name="exportType"/> instance from the
<see cref="T:System.Composition.CompositionContext"/>.
</summary>
<param name="exportType">The type of the export to retrieve.</param>
<param name="contractName">The discriminator to apply when selecting the export.</param>
<returns>An instance of the export.</returns>
<exception cref="T:System.Composition.Hosting.CompositionFailedException" />
</member>
<member name="M:System.Composition.CompositionContext.GetExports``1">
<summary>
Retrieve the single <typeparamref name="TExport"/> instance from the
<see cref="T:System.Composition.CompositionContext"/>.
</summary>
<typeparam name="TExport">The export type to retrieve.</typeparam>
<returns>An instance of the export.</returns>
<exception cref="T:System.Composition.Hosting.CompositionFailedException" />
</member>
<member name="M:System.Composition.CompositionContext.GetExports``1(System.String)">
<summary>
Retrieve the single <typeparamref name="TExport"/> instance from the
<see cref="T:System.Composition.CompositionContext"/>.
</summary>
<typeparam name="TExport">The export type to retrieve.</typeparam>
<returns>An instance of the export.</returns>
<param name="contractName">The discriminator to apply when selecting the export.</param>
<exception cref="T:System.Composition.Hosting.CompositionFailedException" />
</member>
<member name="T:System.Composition.ExportFactory`1">
<summary>
Can be imported by parts that wish to dynamically create instances of other parts.
</summary>
<typeparam name="T">The contract type of the created parts.</typeparam>
</member>
<member name="M:System.Composition.ExportFactory`1.#ctor(System.Func{System.Tuple{`0,System.Action}})">
<summary>
Construct an ExportFactory.
</summary>
<param name="exportCreator">Action invoked upon calls to the Create() method.</param>
</member>
<member name="M:System.Composition.ExportFactory`1.CreateExport">
<summary>
Create an instance of the exported part.
</summary>
<returns>A handle allowing the created part to be accessed then released.</returns>
</member>
<member name="T:System.Composition.ExportFactory`2">
<summary>
An ExportFactory that provides metadata describing the created exports.
</summary>
<typeparam name="T">The contract type being created.</typeparam>
<typeparam name="TMetadata">The metadata required from the export.</typeparam>
</member>
<member name="M:System.Composition.ExportFactory`2.#ctor(System.Func{System.Tuple{`0,System.Action}},`1)">
<summary>
Construct an ExportFactory.
</summary>
<param name="exportCreator">Action invoked upon calls to the Create() method.</param>
<param name="metadata">The metadata associated with the export.</param>
</member>
<member name="P:System.Composition.ExportFactory`2.Metadata">
<summary>
The metadata associated with the export.
</summary>
</member>
<member name="T:System.Composition.Export`1">
<summary>
A handle allowing the graph of parts associated with an exported instance
to be released.
</summary>
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Composition.Export`1.#ctor(`0,System.Action)">
<summary>
Construct an Export.
</summary>
<param name="value">The value of the export.</param>
<param name="disposeAction">An action that releases resources associated with the export.</param>
</member>
<member name="P:System.Composition.Export`1.Value">
<summary>
The exported value.
</summary>
</member>
<member name="M:System.Composition.Export`1.Dispose">
<summary>
Release the parts associated with the exported value.
</summary>
</member>
<member name="T:System.Composition.Hosting.CompositionFailedException">
<summary>
The exception type thrown when composition problems occur.
Exception should be assumed to be fatal for the entire composition/container unless
otherwise documented - no production code should throw this exception.
</summary>
</member>
<member name="M:System.Composition.Hosting.CompositionFailedException.#ctor">
<summary>
Construct a <see cref="T:System.Composition.Hosting.CompositionFailedException"/> with the default message.
</summary>
</member>
<member name="M:System.Composition.Hosting.CompositionFailedException.#ctor(System.String)">
<summary>
Construct a <see cref="T:System.Composition.Hosting.CompositionFailedException"/>.
</summary>
<param name="message">The exception message.</param>
</member>
<member name="M:System.Composition.Hosting.CompositionFailedException.#ctor(System.String,System.Exception)">
<summary>
Construct a <see cref="T:System.Composition.Hosting.CompositionFailedException"/>.
</summary>
<param name="message">The exception message.</param>
<param name="innerException">The inner exception.</param>
</member>
<member name="T:System.Composition.Hosting.Core.CompositionContract">
<summary>
The link between exports and imports.
</summary>
</member>
<member name="M:System.Composition.Hosting.Core.CompositionContract.#ctor(System.Type)">
<summary>
Construct a <see cref="T:System.Composition.Hosting.Core.CompositionContract"/>.
</summary>
<param name="contractType">The type shared between the exporter and importer.</param>
</member>
<member name="M:System.Composition.Hosting.Core.CompositionContract.#ctor(System.Type,System.String)">
<summary>
Construct a <see cref="T:System.Composition.Hosting.Core.CompositionContract"/>.
</summary>
<param name="contractType">The type shared between the exporter and importer.</param>
<param name="contractName">Optionally, a name that discriminates this contract from others with the same type.</param>
</member>
<member name="M:System.Composition.Hosting.Core.CompositionContract.#ctor(System.Type,System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Construct a <see cref="T:System.Composition.Hosting.Core.CompositionContract"/>.
</summary>
<param name="contractType">The type shared between the exporter and importer.</param>
<param name="contractName">Optionally, a name that discriminates this contract from others with the same type.</param>
<param name="metadataConstraints">Optionally, a non-empty collection of named constraints that apply to the contract.</param>
</member>
<member name="P:System.Composition.Hosting.Core.CompositionContract.ContractType">
<summary>
The type shared between the exporter and importer.
</summary>
</member>
<member name="P:System.Composition.Hosting.Core.CompositionContract.ContractName">
<summary>
A name that discriminates this contract from others with the same type.
</summary>
</member>
<member name="P:System.Composition.Hosting.Core.CompositionContract.MetadataConstraints">
<summary>
Constraints applied to the contract. Instead of using this collection
directly it is advisable to use the <see cref="M:System.Composition.Hosting.Core.CompositionContract.TryUnwrapMetadataConstraint``1(System.String,``0@,System.Composition.Hosting.Core.CompositionContract@)"/> method.
</summary>
</member>
<member name="M:System.Composition.Hosting.Core.CompositionContract.Equals(System.Object)">
<summary>
Determines equality between two contracts.
</summary>
<param name="obj">The contract to test.</param>
<returns>True if the contracts are equivalent; otherwise, false.</returns>
</member>
<member name="M:System.Composition.Hosting.Core.CompositionContract.GetHashCode">
<summary>
Gets a hash code for the contract.
</summary>
<returns>The hash code.</returns>
</member>
<member name="M:System.Composition.Hosting.Core.CompositionContract.ToString">
<summary>
Creates a string representation of the contract.
</summary>
<returns>A string representation of the contract.</returns>
</member>
<member name="M:System.Composition.Hosting.Core.CompositionContract.ChangeType(System.Type)">
<summary>
Transform the contract into a matching contract with a
new contract type (with the same contract name and constraints).
</summary>
<param name="newContractType">The contract type for the new contract.</param>
<returns>A matching contract with a
new contract type.</returns>
</member>
<member name="M:System.Composition.Hosting.Core.CompositionContract.TryUnwrapMetadataConstraint``1(System.String,``0@,System.Composition.Hosting.Core.CompositionContract@)">
<summary>
Check the contract for a constraint with a particular name and value, and, if it exists,
retrieve both the value and the remainder of the contract with the constraint
removed.
</summary>
<typeparam name="T">The type of the constraint value.</typeparam>
<param name="constraintName">The name of the constraint.</param>
<param name="constraintValue">The value if it is present and of the correct type, otherwise null.</param>
<param name="remainingContract">The contract with the constraint removed if present, otherwise null.</param>
<returns>True if the constraint is present and of the correct type, otherwise false.</returns>
</member>
<member name="P:System.SR.CompositionContext_NoExportFoundForContract">
<summary>No export was found for the contract '{0}'.</summary>
</member>
<member name="P:System.SR.CompositionFailedDefaultExceptionMessage">
<summary>Composition failed.</summary>
</member>
<member name="P:System.SR.Formatter_ListSeparatorWithSpace">
<summary>,</summary>
</member>
</members>
</doc>