castle.windsor 2.0.0.0 → 2.1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/docs/Committers.txt +5 -1
- data/docs/ReleaseNotes/{InversionOfControl Release Notes.txt → Changes.txt} +32 -0
- data/lib/net-3.5/Castle.Facilities.Logging.dll +0 -0
- data/lib/net-3.5/Castle.Facilities.Logging.xml +75 -0
- data/lib/net-3.5/Castle.MicroKernel.dll +0 -0
- data/lib/{Castle.MicroKernel.xml → net-3.5/Castle.MicroKernel.xml} +206 -18
- data/lib/net-3.5/Castle.Windsor.dll +0 -0
- data/lib/{Castle.Windsor.xml → net-3.5/Castle.Windsor.xml} +0 -0
- data/lib/sl-3.0/Castle.MicroKernel.dll +0 -0
- data/lib/sl-3.0/Castle.MicroKernel.xml +5404 -0
- data/lib/sl-3.0/Castle.Windsor.dll +0 -0
- data/lib/sl-3.0/Castle.Windsor.xml +1157 -0
- metadata +20 -35
- data/docs/Geting the source.txt +0 -11
- data/docs/ReleaseNotes/Core Release Notes.txt +0 -85
- data/docs/ReleaseNotes/DynamicProxy Release Notes.txt +0 -163
- data/docs/ReleaseNotes/License.txt +0 -14
- data/lib/Castle.MicroKernel.dll +0 -0
- data/lib/Castle.Windsor.dll +0 -0
Binary file
|
@@ -0,0 +1,1157 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<doc>
|
3
|
+
<assembly>
|
4
|
+
<name>Castle.Windsor</name>
|
5
|
+
</assembly>
|
6
|
+
<members>
|
7
|
+
<member name="T:Castle.Windsor.Configuration.Interpreters.AbstractInterpreter">
|
8
|
+
<summary>
|
9
|
+
Provides common methods for those who wants
|
10
|
+
to implement <see cref="T:Castle.Windsor.Configuration.IConfigurationInterpreter"/>
|
11
|
+
</summary>
|
12
|
+
</member>
|
13
|
+
<member name="T:Castle.Windsor.Configuration.IConfigurationInterpreter">
|
14
|
+
<summary>
|
15
|
+
Interpreter of a specific language to describe
|
16
|
+
configuration nodes in a hierachical manner.
|
17
|
+
</summary>
|
18
|
+
</member>
|
19
|
+
<member name="M:Castle.Windsor.Configuration.IConfigurationInterpreter.ProcessResource(Castle.Core.Resource.IResource,Castle.MicroKernel.IConfigurationStore)">
|
20
|
+
<summary>
|
21
|
+
Should obtain the contents from the resource,
|
22
|
+
interpret it and populate the <see cref="T:Castle.MicroKernel.IConfigurationStore"/>
|
23
|
+
accordingly.
|
24
|
+
</summary>
|
25
|
+
<param name="resource"></param>
|
26
|
+
<param name="store"></param>
|
27
|
+
</member>
|
28
|
+
<member name="P:Castle.Windsor.Configuration.IConfigurationInterpreter.EnvironmentName">
|
29
|
+
<summary>
|
30
|
+
Gets or sets the name of the environment.
|
31
|
+
</summary>
|
32
|
+
<value>The name of the environment.</value>
|
33
|
+
</member>
|
34
|
+
<member name="P:Castle.Windsor.Configuration.IConfigurationInterpreter.Source">
|
35
|
+
<summary>
|
36
|
+
Exposes the reference to <see cref="T:Castle.Core.Resource.IResource"/>
|
37
|
+
which the interpreter is likely to hold
|
38
|
+
</summary>
|
39
|
+
</member>
|
40
|
+
<member name="M:Castle.Windsor.Configuration.Interpreters.AbstractInterpreter.ProcessResource(Castle.Core.Resource.IResource,Castle.MicroKernel.IConfigurationStore)">
|
41
|
+
<summary>
|
42
|
+
Should obtain the contents from the resource,
|
43
|
+
interpret it and populate the <see cref="T:Castle.MicroKernel.IConfigurationStore"/>
|
44
|
+
accordingly.
|
45
|
+
</summary>
|
46
|
+
<param name="resource"></param>
|
47
|
+
<param name="store"></param>
|
48
|
+
</member>
|
49
|
+
<member name="P:Castle.Windsor.Configuration.Interpreters.AbstractInterpreter.Source">
|
50
|
+
<summary>
|
51
|
+
Exposes the reference to <see cref="T:Castle.Core.Resource.IResource"/>
|
52
|
+
which the interpreter is likely to hold
|
53
|
+
</summary>
|
54
|
+
<value></value>
|
55
|
+
</member>
|
56
|
+
<member name="P:Castle.Windsor.Configuration.Interpreters.AbstractInterpreter.EnvironmentName">
|
57
|
+
<summary>
|
58
|
+
Gets or sets the name of the environment.
|
59
|
+
</summary>
|
60
|
+
<value>The name of the environment.</value>
|
61
|
+
</member>
|
62
|
+
<member name="T:Castle.Windsor.Installer.EnvironmentDelegate">
|
63
|
+
<summary>
|
64
|
+
Delegate to provide environment name.
|
65
|
+
</summary>
|
66
|
+
<returns>The environment name.</returns>
|
67
|
+
</member>
|
68
|
+
<member name="T:Castle.Windsor.IWindsorInstaller">
|
69
|
+
<summary>
|
70
|
+
The contract to install components in the container.
|
71
|
+
</summary>
|
72
|
+
</member>
|
73
|
+
<member name="M:Castle.Windsor.IWindsorInstaller.Install(Castle.Windsor.IWindsorContainer,Castle.MicroKernel.IConfigurationStore)">
|
74
|
+
<summary>
|
75
|
+
Performs the installation in the <see cref="T:Castle.Windsor.IWindsorContainer"/>.
|
76
|
+
</summary>
|
77
|
+
<param name="container">The container.</param>
|
78
|
+
<param name="store">The configuration store.</param>
|
79
|
+
</member>
|
80
|
+
<member name="M:Castle.Windsor.Installer.ConfigurationInstaller.#ctor(Castle.Windsor.Configuration.IConfigurationInterpreter)">
|
81
|
+
<summary>
|
82
|
+
Initializes a new instance of the ConfigurationInstaller class.
|
83
|
+
</summary>
|
84
|
+
</member>
|
85
|
+
<member name="M:Castle.Windsor.Installer.ConfigurationInstaller.Environment(System.String)">
|
86
|
+
<summary>
|
87
|
+
Sets the configuration environment name.
|
88
|
+
</summary>
|
89
|
+
<param name="environmentName">The environment name.</param>
|
90
|
+
<returns></returns>
|
91
|
+
</member>
|
92
|
+
<member name="M:Castle.Windsor.Installer.ConfigurationInstaller.Environment(Castle.Windsor.Installer.EnvironmentDelegate)">
|
93
|
+
<summary>
|
94
|
+
Set the configuration environment strategy.
|
95
|
+
</summary>
|
96
|
+
<param name="environment">The environment strategy.</param>
|
97
|
+
<returns></returns>
|
98
|
+
</member>
|
99
|
+
<member name="T:Castle.Windsor.Installer.DefaultComponentInstaller">
|
100
|
+
<summary>
|
101
|
+
Default <see cref="T:Castle.Windsor.IComponentsInstaller"/> implementation.
|
102
|
+
</summary>
|
103
|
+
</member>
|
104
|
+
<member name="T:Castle.Windsor.IComponentsInstaller">
|
105
|
+
<summary>
|
106
|
+
Installs the components and facilities based on the
|
107
|
+
information on the configuration store.
|
108
|
+
</summary>
|
109
|
+
</member>
|
110
|
+
<member name="M:Castle.Windsor.IComponentsInstaller.SetUp(Castle.Windsor.IWindsorContainer,Castle.MicroKernel.IConfigurationStore)">
|
111
|
+
<summary>
|
112
|
+
Perform installation.
|
113
|
+
</summary>
|
114
|
+
<param name="container">Target container</param>
|
115
|
+
<param name="store">Configuration store</param>
|
116
|
+
</member>
|
117
|
+
<member name="M:Castle.Windsor.Installer.DefaultComponentInstaller.SetUp(Castle.Windsor.IWindsorContainer,Castle.MicroKernel.IConfigurationStore)">
|
118
|
+
<summary>
|
119
|
+
Perform installation.
|
120
|
+
</summary>
|
121
|
+
<param name="container">Target container</param>
|
122
|
+
<param name="store">Configuration store</param>
|
123
|
+
</member>
|
124
|
+
<member name="M:Castle.Windsor.Proxy.AbstractProxyFactory.ObtainInterceptors(Castle.MicroKernel.IKernel,Castle.Core.ComponentModel,Castle.MicroKernel.CreationContext)">
|
125
|
+
<summary>
|
126
|
+
Obtains the interceptors associated with the component.
|
127
|
+
</summary>
|
128
|
+
<param name="kernel">The kernel instance</param>
|
129
|
+
<param name="model">The component model</param>
|
130
|
+
<param name="context">The creation context</param>
|
131
|
+
<returns>interceptors array</returns>
|
132
|
+
</member>
|
133
|
+
<member name="T:Castle.Windsor.Proxy.DefaultProxyFactory">
|
134
|
+
<summary>
|
135
|
+
This implementation of <see cref="T:Castle.MicroKernel.IProxyFactory"/> relies
|
136
|
+
on DynamicProxy to expose proxy capabilies.
|
137
|
+
</summary>
|
138
|
+
<remarks>
|
139
|
+
Note that only virtual methods can be intercepted in a
|
140
|
+
concrete class. However, if the component
|
141
|
+
was registered with a service interface, we proxy
|
142
|
+
the interface and the methods don't need to be virtual,
|
143
|
+
</remarks>
|
144
|
+
</member>
|
145
|
+
<member name="M:Castle.Windsor.Proxy.DefaultProxyFactory.#ctor">
|
146
|
+
<summary>
|
147
|
+
Constructs a DefaultProxyFactory
|
148
|
+
</summary>
|
149
|
+
</member>
|
150
|
+
<member name="M:Castle.Windsor.Proxy.DefaultProxyFactory.Create(Castle.MicroKernel.IKernel,System.Object,Castle.Core.ComponentModel,Castle.MicroKernel.CreationContext,System.Object[])">
|
151
|
+
<summary>
|
152
|
+
Creates the proxy for the supplied component.
|
153
|
+
</summary>
|
154
|
+
<param name="kernel">The kernel.</param>
|
155
|
+
<param name="target">The target.</param>
|
156
|
+
<param name="model">The model.</param>
|
157
|
+
<param name="constructorArguments">The constructor arguments.</param>
|
158
|
+
<param name="context">The creation context</param>
|
159
|
+
<returns>The component proxy.</returns>
|
160
|
+
</member>
|
161
|
+
<member name="M:Castle.Windsor.Proxy.DefaultProxyFactory.RequiresTargetInstance(Castle.MicroKernel.IKernel,Castle.Core.ComponentModel)">
|
162
|
+
<summary>
|
163
|
+
Determines if the component requiries a target instance for proxying.
|
164
|
+
</summary>
|
165
|
+
<param name="kernel">The kernel.</param>
|
166
|
+
<param name="model">The model.</param>
|
167
|
+
<returns>true if an instance is required.</returns>
|
168
|
+
</member>
|
169
|
+
<member name="T:Castle.Windsor.IContainerAccessor">
|
170
|
+
<summary>
|
171
|
+
This interface should be implemented by classes
|
172
|
+
that are available in a bigger context, exposing
|
173
|
+
the container to different areas in the same application.
|
174
|
+
<para>
|
175
|
+
For example, in Web application, the (global) HttpApplication
|
176
|
+
subclasses should implement this interface to expose
|
177
|
+
the configured container
|
178
|
+
</para>
|
179
|
+
</summary>
|
180
|
+
</member>
|
181
|
+
<member name="T:Castle.Windsor.IEnvironmentInfo">
|
182
|
+
<summary>
|
183
|
+
Gets the environment information (name). Implementors should
|
184
|
+
use to define their environments and how those affect the configuration.
|
185
|
+
</summary>
|
186
|
+
</member>
|
187
|
+
<member name="M:Castle.Windsor.IEnvironmentInfo.GetEnvironmentName">
|
188
|
+
<summary>
|
189
|
+
Gets the name of the environment.
|
190
|
+
</summary>
|
191
|
+
<returns></returns>
|
192
|
+
</member>
|
193
|
+
<member name="T:Castle.Windsor.IWindsorContainer">
|
194
|
+
<summary>
|
195
|
+
The <c>IWindsorContainer</c> interface exposes all the
|
196
|
+
functionality the Windsor implements.
|
197
|
+
</summary>
|
198
|
+
</member>
|
199
|
+
<member name="M:Castle.Windsor.IWindsorContainer.AddFacility(System.String,Castle.MicroKernel.IFacility)">
|
200
|
+
<summary>
|
201
|
+
Registers a facility within the container.
|
202
|
+
</summary>
|
203
|
+
<param name="key">The key by which the <see cref="T:Castle.MicroKernel.IFacility"/> gets indexed.</param>
|
204
|
+
<param name="facility">The <see cref="T:Castle.MicroKernel.IFacility"/> to add to the container.</param>
|
205
|
+
</member>
|
206
|
+
<member name="M:Castle.Windsor.IWindsorContainer.AddFacility``1(System.String)">
|
207
|
+
<summary>
|
208
|
+
Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
|
209
|
+
</summary>
|
210
|
+
<typeparam name="T">The facility type.</typeparam>
|
211
|
+
<param name="key"></param>
|
212
|
+
<returns></returns>
|
213
|
+
</member>
|
214
|
+
<member name="M:Castle.Windsor.IWindsorContainer.AddFacility``1(System.String,System.Action{``0})">
|
215
|
+
<summary>
|
216
|
+
Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
|
217
|
+
</summary>
|
218
|
+
<typeparam name="T">The facility type.</typeparam>
|
219
|
+
<param name="key"></param>
|
220
|
+
<param name="onCreate">The callback for creation.</param>
|
221
|
+
<returns></returns>
|
222
|
+
</member>
|
223
|
+
<member name="M:Castle.Windsor.IWindsorContainer.AddFacility``1(System.String,System.Func{``0,System.Object})">
|
224
|
+
<summary>
|
225
|
+
Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
|
226
|
+
</summary>
|
227
|
+
<typeparam name="T">The facility type.</typeparam>
|
228
|
+
<param name="key"></param>
|
229
|
+
<param name="onCreate">The callback for creation.</param>
|
230
|
+
<returns></returns>
|
231
|
+
</member>
|
232
|
+
<member name="M:Castle.Windsor.IWindsorContainer.AddFacility``1">
|
233
|
+
<summary>
|
234
|
+
Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
|
235
|
+
</summary>
|
236
|
+
<typeparam name="T">The facility type.</typeparam>
|
237
|
+
<returns></returns>
|
238
|
+
</member>
|
239
|
+
<member name="M:Castle.Windsor.IWindsorContainer.AddFacility``1(System.Action{``0})">
|
240
|
+
<summary>
|
241
|
+
Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
|
242
|
+
</summary>
|
243
|
+
<typeparam name="T">The facility type.</typeparam>
|
244
|
+
<param name="onCreate">The callback for creation.</param>
|
245
|
+
<returns></returns>
|
246
|
+
</member>
|
247
|
+
<member name="M:Castle.Windsor.IWindsorContainer.AddFacility``1(System.Func{``0,System.Object})">
|
248
|
+
<summary>
|
249
|
+
Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
|
250
|
+
</summary>
|
251
|
+
<typeparam name="T">The facility type.</typeparam>
|
252
|
+
<param name="onCreate">The callback for creation.</param>
|
253
|
+
<returns></returns>
|
254
|
+
</member>
|
255
|
+
<member name="M:Castle.Windsor.IWindsorContainer.AddComponent(System.String,System.Type)">
|
256
|
+
<summary>
|
257
|
+
Adds a component to be managed by the container
|
258
|
+
</summary>
|
259
|
+
<param name="key">The key by which the component gets indexed.</param>
|
260
|
+
<param name="classType">The <see cref="T:System.Type"/> to manage.</param>
|
261
|
+
</member>
|
262
|
+
<member name="M:Castle.Windsor.IWindsorContainer.AddComponent(System.String,System.Type,System.Type)">
|
263
|
+
<summary>
|
264
|
+
Adds a component to be managed by the container
|
265
|
+
</summary>
|
266
|
+
<param name="key">The key by which the component gets indexed.</param>
|
267
|
+
<param name="serviceType">The service <see cref="T:System.Type"/> that the component implements.</param>
|
268
|
+
<param name="classType">The <see cref="T:System.Type"/> to manage.</param>
|
269
|
+
</member>
|
270
|
+
<member name="M:Castle.Windsor.IWindsorContainer.AddComponentLifeStyle(System.String,System.Type,Castle.Core.LifestyleType)">
|
271
|
+
<summary>
|
272
|
+
Adds a component to be managed by the container
|
273
|
+
</summary>
|
274
|
+
<param name="key">The key by which the component gets indexed.</param>
|
275
|
+
<param name="classType">The <see cref="T:System.Type"/> to manage.</param>
|
276
|
+
<param name="lifestyle">The <see cref="T:Castle.Core.LifestyleType"/> with which to manage the component.</param>
|
277
|
+
</member>
|
278
|
+
<member name="M:Castle.Windsor.IWindsorContainer.AddComponentLifeStyle(System.String,System.Type,System.Type,Castle.Core.LifestyleType)">
|
279
|
+
<summary>
|
280
|
+
Adds a component to be managed by the container
|
281
|
+
</summary>
|
282
|
+
<param name="key">The key by which the component gets indexed.</param>
|
283
|
+
<param name="serviceType">The service <see cref="T:System.Type"/> that the component implements.</param>
|
284
|
+
<param name="classType">The <see cref="T:System.Type"/> to manage.</param>
|
285
|
+
<param name="lifestyle">The <see cref="T:Castle.Core.LifestyleType"/> with which to manage the component.</param>
|
286
|
+
</member>
|
287
|
+
<member name="M:Castle.Windsor.IWindsorContainer.AddComponentWithProperties(System.String,System.Type,System.Collections.IDictionary)">
|
288
|
+
<summary>
|
289
|
+
Adds a concrete class as a component and specify the extended properties.
|
290
|
+
Used by facilities, mostly.
|
291
|
+
</summary>
|
292
|
+
<param name="key"></param>
|
293
|
+
<param name="classType"></param>
|
294
|
+
<param name="extendedProperties"></param>
|
295
|
+
</member>
|
296
|
+
<member name="M:Castle.Windsor.IWindsorContainer.AddComponentWithProperties(System.String,System.Type,System.Type,System.Collections.IDictionary)">
|
297
|
+
<summary>
|
298
|
+
Adds a concrete class and an interface
|
299
|
+
as a component and specify the extended properties.
|
300
|
+
Used by facilities, mostly.
|
301
|
+
</summary>
|
302
|
+
<param name="key"></param>
|
303
|
+
<param name="serviceType"></param>
|
304
|
+
<param name="classType"></param>
|
305
|
+
<param name="extendedProperties"></param>
|
306
|
+
</member>
|
307
|
+
<member name="M:Castle.Windsor.IWindsorContainer.AddComponent``1">
|
308
|
+
<summary>
|
309
|
+
Adds a component to be managed by the container.
|
310
|
+
The key to obtain the component will be the FullName of the type.
|
311
|
+
</summary>
|
312
|
+
<typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
|
313
|
+
</member>
|
314
|
+
<member name="M:Castle.Windsor.IWindsorContainer.AddComponent``1(System.String)">
|
315
|
+
<summary>
|
316
|
+
Adds a component to be managed by the container
|
317
|
+
</summary>
|
318
|
+
<typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
|
319
|
+
<param name="key">The key by which the component gets indexed.</param>
|
320
|
+
</member>
|
321
|
+
<member name="M:Castle.Windsor.IWindsorContainer.AddComponentLifeStyle``1(Castle.Core.LifestyleType)">
|
322
|
+
<summary>
|
323
|
+
Adds a component to be managed by the container.
|
324
|
+
The key to obtain the component will be the FullName of the type.
|
325
|
+
</summary>
|
326
|
+
<typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
|
327
|
+
<param name="lifestyle">The <see cref="T:Castle.Core.LifestyleType"/> with which to manage the component.</param>
|
328
|
+
</member>
|
329
|
+
<member name="M:Castle.Windsor.IWindsorContainer.AddComponentLifeStyle``1(System.String,Castle.Core.LifestyleType)">
|
330
|
+
<summary>
|
331
|
+
Adds a component to be managed by the container
|
332
|
+
</summary>
|
333
|
+
<typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
|
334
|
+
<param name="key">The key by which the component gets indexed.</param>
|
335
|
+
<param name="lifestyle">The <see cref="T:Castle.Core.LifestyleType"/> with which to manage the component.</param>
|
336
|
+
</member>
|
337
|
+
<member name="M:Castle.Windsor.IWindsorContainer.AddComponent``2">
|
338
|
+
<summary>
|
339
|
+
Adds a component to be managed by the container
|
340
|
+
The key to obtain the component will be the FullName of the type.
|
341
|
+
</summary>
|
342
|
+
<typeparam name="I">The service <see cref="T:System.Type"/> that the component implements.</typeparam>
|
343
|
+
<typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
|
344
|
+
</member>
|
345
|
+
<member name="M:Castle.Windsor.IWindsorContainer.AddComponent``2(System.String)">
|
346
|
+
<summary>
|
347
|
+
Adds a component to be managed by the container
|
348
|
+
</summary>
|
349
|
+
<typeparam name="I">The service <see cref="T:System.Type"/> that the component implements.</typeparam>
|
350
|
+
<typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
|
351
|
+
<param name="key">The key by which the component gets indexed.</param>
|
352
|
+
</member>
|
353
|
+
<member name="M:Castle.Windsor.IWindsorContainer.AddComponentLifeStyle``2(Castle.Core.LifestyleType)">
|
354
|
+
<summary>
|
355
|
+
Adds a component to be managed by the container
|
356
|
+
The key to obtain the component will be the FullName of the type.
|
357
|
+
</summary>
|
358
|
+
<typeparam name="I">The service <see cref="T:System.Type"/> that the component implements.</typeparam>
|
359
|
+
<typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
|
360
|
+
<param name="lifestyle">The <see cref="T:Castle.Core.LifestyleType"/> with which to manage the component.</param>
|
361
|
+
</member>
|
362
|
+
<member name="M:Castle.Windsor.IWindsorContainer.AddComponentLifeStyle``2(System.String,Castle.Core.LifestyleType)">
|
363
|
+
<summary>
|
364
|
+
Adds a component to be managed by the container
|
365
|
+
</summary>
|
366
|
+
<typeparam name="I">The service <see cref="T:System.Type"/> that the component implements.</typeparam>
|
367
|
+
<typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
|
368
|
+
<param name="key">The key by which the component gets indexed.</param>
|
369
|
+
<param name="lifestyle">The <see cref="T:Castle.Core.LifestyleType"/> with which to manage the component.</param>
|
370
|
+
</member>
|
371
|
+
<member name="M:Castle.Windsor.IWindsorContainer.AddComponentWithProperties``1(System.Collections.IDictionary)">
|
372
|
+
<summary>
|
373
|
+
Adds a concrete class as a component and specify the extended properties.
|
374
|
+
Used by facilities, mostly.
|
375
|
+
The key to obtain the component will be the FullName of the type.
|
376
|
+
</summary>
|
377
|
+
<typeparam name="T"></typeparam>
|
378
|
+
<param name="extendedProperties"></param>
|
379
|
+
</member>
|
380
|
+
<member name="M:Castle.Windsor.IWindsorContainer.AddComponentWithProperties``1(System.String,System.Collections.IDictionary)">
|
381
|
+
<summary>
|
382
|
+
Adds a concrete class as a component and specify the extended properties.
|
383
|
+
Used by facilities, mostly.
|
384
|
+
</summary>
|
385
|
+
<typeparam name="T"></typeparam>
|
386
|
+
<param name="key"></param>
|
387
|
+
<param name="extendedProperties"></param>
|
388
|
+
</member>
|
389
|
+
<member name="M:Castle.Windsor.IWindsorContainer.AddComponentProperties``2(System.Collections.IDictionary)">
|
390
|
+
<summary>
|
391
|
+
Adds a concrete class and an interface
|
392
|
+
as a component and specify the extended properties.
|
393
|
+
Used by facilities, mostly.
|
394
|
+
The key to obtain the component will be the FullName of the type.
|
395
|
+
</summary>
|
396
|
+
<typeparam name="I"></typeparam>
|
397
|
+
<typeparam name="T"></typeparam>
|
398
|
+
<param name="extendedProperties"></param>
|
399
|
+
</member>
|
400
|
+
<member name="M:Castle.Windsor.IWindsorContainer.AddComponentProperties``2(System.String,System.Collections.IDictionary)">
|
401
|
+
<summary>
|
402
|
+
Adds a concrete class and an interface
|
403
|
+
as a component and specify the extended properties.
|
404
|
+
Used by facilities, mostly.
|
405
|
+
</summary>
|
406
|
+
<typeparam name="I"></typeparam>
|
407
|
+
<typeparam name="T"></typeparam>
|
408
|
+
<param name="key"></param>
|
409
|
+
<param name="extendedProperties"></param>
|
410
|
+
</member>
|
411
|
+
<member name="M:Castle.Windsor.IWindsorContainer.Register(Castle.MicroKernel.Registration.IRegistration[])">
|
412
|
+
<summary>
|
413
|
+
Registers the components provided by the <see cref="T:Castle.MicroKernel.Registration.IRegistration"/>s
|
414
|
+
with the <see cref="T:Castle.Windsor.IWindsorContainer"/>.
|
415
|
+
<para/>
|
416
|
+
Create a new registration using <see cref="T:Castle.MicroKernel.Registration.Component"/>.For() or <see cref="T:Castle.MicroKernel.Registration.AllTypes"/>.
|
417
|
+
</summary>
|
418
|
+
<example>
|
419
|
+
<code>
|
420
|
+
container.Register(Component.For<IService>().ImplementedBy<DefaultService>());
|
421
|
+
</code>
|
422
|
+
</example>
|
423
|
+
<param name="registrations">The component registrations.</param>
|
424
|
+
<returns>The container.</returns>
|
425
|
+
</member>
|
426
|
+
<member name="M:Castle.Windsor.IWindsorContainer.Install(Castle.Windsor.IWindsorInstaller[])">
|
427
|
+
<summary>
|
428
|
+
Installs the components provided by the <see cref="T:Castle.Windsor.IWindsorInstaller"/>s
|
429
|
+
with the <see cref="T:Castle.Windsor.IWindsorContainer"/>.
|
430
|
+
<param name="installers">The component installers.</param>
|
431
|
+
<returns>The container.</returns>
|
432
|
+
</summary>
|
433
|
+
</member>
|
434
|
+
<member name="M:Castle.Windsor.IWindsorContainer.Resolve(System.String)">
|
435
|
+
<summary>
|
436
|
+
Returns a component instance by the key
|
437
|
+
</summary>
|
438
|
+
<param name="key"></param>
|
439
|
+
<returns></returns>
|
440
|
+
</member>
|
441
|
+
<member name="M:Castle.Windsor.IWindsorContainer.Resolve(System.String,System.Collections.IDictionary)">
|
442
|
+
<summary>
|
443
|
+
Returns a component instance by the key
|
444
|
+
</summary>
|
445
|
+
<param name="key"></param>
|
446
|
+
<param name="arguments"></param>
|
447
|
+
<returns></returns>
|
448
|
+
</member>
|
449
|
+
<member name="M:Castle.Windsor.IWindsorContainer.Resolve(System.String,System.Object)">
|
450
|
+
<summary>
|
451
|
+
Returns a component instance by the key
|
452
|
+
</summary>
|
453
|
+
<param name="key"></param>
|
454
|
+
<param name="argumentsAsAnonymousType"></param>
|
455
|
+
<returns></returns>
|
456
|
+
</member>
|
457
|
+
<member name="M:Castle.Windsor.IWindsorContainer.Resolve(System.String,System.Type)">
|
458
|
+
<summary>
|
459
|
+
Returns a component instance by the key
|
460
|
+
</summary>
|
461
|
+
<param name="key"></param>
|
462
|
+
<param name="service"></param>
|
463
|
+
<returns></returns>
|
464
|
+
</member>
|
465
|
+
<member name="M:Castle.Windsor.IWindsorContainer.Resolve(System.Type)">
|
466
|
+
<summary>
|
467
|
+
Returns a component instance by the service
|
468
|
+
</summary>
|
469
|
+
<param name="service"></param>
|
470
|
+
<returns></returns>
|
471
|
+
</member>
|
472
|
+
<member name="M:Castle.Windsor.IWindsorContainer.Resolve(System.Type,System.Collections.IDictionary)">
|
473
|
+
<summary>
|
474
|
+
Returns a component instance by the service
|
475
|
+
</summary>
|
476
|
+
<param name="service"></param>
|
477
|
+
<param name="arguments"></param>
|
478
|
+
<returns></returns>
|
479
|
+
</member>
|
480
|
+
<member name="M:Castle.Windsor.IWindsorContainer.Resolve(System.Type,System.Object)">
|
481
|
+
<summary>
|
482
|
+
Returns a component instance by the service
|
483
|
+
</summary>
|
484
|
+
<param name="service"></param>
|
485
|
+
<param name="argumentsAsAnonymousType"></param>
|
486
|
+
<returns></returns>
|
487
|
+
</member>
|
488
|
+
<member name="M:Castle.Windsor.IWindsorContainer.Release(System.Object)">
|
489
|
+
<summary>
|
490
|
+
Releases a component instance
|
491
|
+
</summary>
|
492
|
+
<param name="instance"></param>
|
493
|
+
</member>
|
494
|
+
<member name="M:Castle.Windsor.IWindsorContainer.AddChildContainer(Castle.Windsor.IWindsorContainer)">
|
495
|
+
<summary>
|
496
|
+
Registers a subcontainer. The components exposed
|
497
|
+
by this container will be accessible from subcontainers.
|
498
|
+
</summary>
|
499
|
+
<param name="childContainer"></param>
|
500
|
+
</member>
|
501
|
+
<member name="M:Castle.Windsor.IWindsorContainer.RemoveChildContainer(Castle.Windsor.IWindsorContainer)">
|
502
|
+
<summary>
|
503
|
+
Remove a child container
|
504
|
+
</summary>
|
505
|
+
<param name="childContainer"></param>
|
506
|
+
</member>
|
507
|
+
<member name="M:Castle.Windsor.IWindsorContainer.GetChildContainer(System.String)">
|
508
|
+
<summary>
|
509
|
+
Gets a child container instance by name.
|
510
|
+
</summary>
|
511
|
+
<param name="name">The container's name.</param>
|
512
|
+
<returns>The child container instance or null</returns>
|
513
|
+
</member>
|
514
|
+
<member name="M:Castle.Windsor.IWindsorContainer.Resolve``1">
|
515
|
+
<summary>
|
516
|
+
Returns a component instance by the service
|
517
|
+
</summary>
|
518
|
+
<typeparam name="T">Service type</typeparam>
|
519
|
+
<returns>The component instance</returns>
|
520
|
+
</member>
|
521
|
+
<member name="M:Castle.Windsor.IWindsorContainer.Resolve``1(System.Collections.IDictionary)">
|
522
|
+
<summary>
|
523
|
+
Returns a component instance by the service
|
524
|
+
</summary>
|
525
|
+
<typeparam name="T">Service type</typeparam>
|
526
|
+
<param name="arguments"></param>
|
527
|
+
<returns>The component instance</returns>
|
528
|
+
</member>
|
529
|
+
<member name="M:Castle.Windsor.IWindsorContainer.Resolve``1(System.Object)">
|
530
|
+
<summary>
|
531
|
+
Returns a component instance by the service
|
532
|
+
</summary>
|
533
|
+
<typeparam name="T">Service type</typeparam>
|
534
|
+
<param name="argumentsAsAnonymousType"></param>
|
535
|
+
<returns>The component instance</returns>
|
536
|
+
</member>
|
537
|
+
<member name="M:Castle.Windsor.IWindsorContainer.Resolve``1(System.String)">
|
538
|
+
<summary>
|
539
|
+
Returns a component instance by the key
|
540
|
+
</summary>
|
541
|
+
<param name="key">Component's key</param>
|
542
|
+
<typeparam name="T">Service type</typeparam>
|
543
|
+
<returns>The Component instance</returns>
|
544
|
+
</member>
|
545
|
+
<member name="M:Castle.Windsor.IWindsorContainer.Resolve``1(System.String,System.Collections.IDictionary)">
|
546
|
+
<summary>
|
547
|
+
Returns a component instance by the key
|
548
|
+
</summary>
|
549
|
+
<typeparam name="T">Service type</typeparam>
|
550
|
+
<param name="key">Component's key</param>
|
551
|
+
<param name="arguments"></param>
|
552
|
+
<returns>The Component instance</returns>
|
553
|
+
</member>
|
554
|
+
<member name="M:Castle.Windsor.IWindsorContainer.Resolve``1(System.String,System.Object)">
|
555
|
+
<summary>
|
556
|
+
Returns a component instance by the key
|
557
|
+
</summary>
|
558
|
+
<typeparam name="T">Service type</typeparam>
|
559
|
+
<param name="key">Component's key</param>
|
560
|
+
<param name="argumentsAsAnonymousType"></param>
|
561
|
+
<returns>The Component instance</returns>
|
562
|
+
</member>
|
563
|
+
<member name="M:Castle.Windsor.IWindsorContainer.Resolve(System.String,System.Type,System.Collections.IDictionary)">
|
564
|
+
<summary>
|
565
|
+
Returns a component instance by the key
|
566
|
+
</summary>
|
567
|
+
<param name="key"></param>
|
568
|
+
<param name="service"></param>
|
569
|
+
<param name="arguments"></param>
|
570
|
+
<returns></returns>
|
571
|
+
</member>
|
572
|
+
<member name="M:Castle.Windsor.IWindsorContainer.Resolve(System.String,System.Type,System.Object)">
|
573
|
+
<summary>
|
574
|
+
Returns a component instance by the key
|
575
|
+
</summary>
|
576
|
+
<param name="key"></param>
|
577
|
+
<param name="service"></param>
|
578
|
+
<param name="argumentsAsAnonymousType"></param>
|
579
|
+
<returns></returns>
|
580
|
+
</member>
|
581
|
+
<member name="M:Castle.Windsor.IWindsorContainer.ResolveAll``1">
|
582
|
+
<summary>
|
583
|
+
Resolve all valid components that match this type.
|
584
|
+
</summary>
|
585
|
+
<typeparam name="T">The service type</typeparam>
|
586
|
+
</member>
|
587
|
+
<member name="M:Castle.Windsor.IWindsorContainer.ResolveAll(System.Type)">
|
588
|
+
<summary>
|
589
|
+
Resolve all valid components that mathc this service
|
590
|
+
<param name="service">the service to match</param>
|
591
|
+
</summary>
|
592
|
+
</member>
|
593
|
+
<member name="M:Castle.Windsor.IWindsorContainer.ResolveAll(System.Type,System.Collections.IDictionary)">
|
594
|
+
<summary>
|
595
|
+
Resolve all valid components that mathc this service
|
596
|
+
<param name="service">the service to match</param>
|
597
|
+
<param name="arguments">Arguments to resolve the service</param>
|
598
|
+
</summary>
|
599
|
+
</member>
|
600
|
+
<member name="M:Castle.Windsor.IWindsorContainer.ResolveAll(System.Type,System.Object)">
|
601
|
+
<summary>
|
602
|
+
Resolve all valid components that mathc this service
|
603
|
+
<param name="service">the service to match</param>
|
604
|
+
<param name="argumentsAsAnonymousType">Arguments to resolve the service</param>
|
605
|
+
</summary>
|
606
|
+
</member>
|
607
|
+
<member name="M:Castle.Windsor.IWindsorContainer.ResolveAll``1(System.Collections.IDictionary)">
|
608
|
+
<summary>
|
609
|
+
Resolve all valid components that match this type.
|
610
|
+
<typeparam name="T">The service type</typeparam>
|
611
|
+
<param name="arguments">Arguments to resolve the service</param>
|
612
|
+
</summary>
|
613
|
+
</member>
|
614
|
+
<member name="M:Castle.Windsor.IWindsorContainer.ResolveAll``1(System.Object)">
|
615
|
+
<summary>
|
616
|
+
Resolve all valid components that match this type.
|
617
|
+
<typeparam name="T">The service type</typeparam>
|
618
|
+
<param name="argumentsAsAnonymousType">Arguments to resolve the service</param>
|
619
|
+
</summary>
|
620
|
+
</member>
|
621
|
+
<member name="P:Castle.Windsor.IWindsorContainer.Name">
|
622
|
+
<summary>
|
623
|
+
Gets the container's name
|
624
|
+
</summary>
|
625
|
+
<remarks>
|
626
|
+
Only useful when child containers are being used
|
627
|
+
</remarks>
|
628
|
+
<value>The container's name.</value>
|
629
|
+
</member>
|
630
|
+
<member name="P:Castle.Windsor.IWindsorContainer.Item(System.String)">
|
631
|
+
<summary>
|
632
|
+
Shortcut to <see cref="M:Castle.Windsor.IWindsorContainer.Resolve(System.String)"/>
|
633
|
+
</summary>
|
634
|
+
</member>
|
635
|
+
<member name="P:Castle.Windsor.IWindsorContainer.Item(System.Type)">
|
636
|
+
<summary>
|
637
|
+
Shortcut to <see cref="M:Castle.Windsor.IWindsorContainer.Resolve(System.Type)"/>
|
638
|
+
</summary>
|
639
|
+
</member>
|
640
|
+
<member name="P:Castle.Windsor.IWindsorContainer.Kernel">
|
641
|
+
<summary>
|
642
|
+
Returns the inner instance of the MicroKernel
|
643
|
+
</summary>
|
644
|
+
</member>
|
645
|
+
<member name="P:Castle.Windsor.IWindsorContainer.Parent">
|
646
|
+
<summary>
|
647
|
+
Gets or sets the parent container if this instance
|
648
|
+
is a sub container.
|
649
|
+
</summary>
|
650
|
+
</member>
|
651
|
+
<member name="T:Castle.Windsor.WindsorContainer">
|
652
|
+
<summary>
|
653
|
+
Implementation of <see cref="T:Castle.Windsor.IWindsorContainer"/>
|
654
|
+
which delegates to <see cref="T:Castle.MicroKernel.IKernel"/> implementation.
|
655
|
+
</summary>
|
656
|
+
</member>
|
657
|
+
<member name="M:Castle.Windsor.WindsorContainer.#ctor">
|
658
|
+
<summary>
|
659
|
+
Constructs a container without any external
|
660
|
+
configuration reference
|
661
|
+
</summary>
|
662
|
+
</member>
|
663
|
+
<member name="M:Castle.Windsor.WindsorContainer.#ctor(Castle.MicroKernel.IConfigurationStore)">
|
664
|
+
<summary>
|
665
|
+
Constructs a container using the specified
|
666
|
+
<see cref="T:Castle.MicroKernel.IConfigurationStore"/> implementation.
|
667
|
+
</summary>
|
668
|
+
<param name="store">The instance of an <see cref="T:Castle.MicroKernel.IConfigurationStore"/> implementation.</param>
|
669
|
+
</member>
|
670
|
+
<member name="M:Castle.Windsor.WindsorContainer.#ctor(Castle.Windsor.Configuration.IConfigurationInterpreter)">
|
671
|
+
<summary>
|
672
|
+
Constructs a container using the specified
|
673
|
+
<see cref="T:Castle.Windsor.Configuration.IConfigurationInterpreter"/> implementation.
|
674
|
+
</summary>
|
675
|
+
<param name="interpreter">The instance of an <see cref="T:Castle.Windsor.Configuration.IConfigurationInterpreter"/> implementation.</param>
|
676
|
+
</member>
|
677
|
+
<member name="M:Castle.Windsor.WindsorContainer.#ctor(Castle.Windsor.Configuration.IConfigurationInterpreter,Castle.Windsor.IEnvironmentInfo)">
|
678
|
+
<summary>
|
679
|
+
Initializes a new instance of the <see cref="T:Castle.Windsor.WindsorContainer"/> class.
|
680
|
+
</summary>
|
681
|
+
<param name="interpreter">The interpreter.</param>
|
682
|
+
<param name="environmentInfo">The environment info.</param>
|
683
|
+
</member>
|
684
|
+
<member name="M:Castle.Windsor.WindsorContainer.#ctor(Castle.MicroKernel.IKernel,Castle.Windsor.IComponentsInstaller)">
|
685
|
+
<summary>
|
686
|
+
Constructs a container using the specified <see cref="T:Castle.MicroKernel.IKernel"/>
|
687
|
+
implementation. Rarely used.
|
688
|
+
</summary>
|
689
|
+
<remarks>
|
690
|
+
This constructs sets the Kernel.ProxyFactory property to
|
691
|
+
<c>Proxy.DefaultProxyFactory</c>
|
692
|
+
</remarks>
|
693
|
+
<param name="kernel">Kernel instance</param>
|
694
|
+
<param name="installer">Installer instance</param>
|
695
|
+
</member>
|
696
|
+
<member name="M:Castle.Windsor.WindsorContainer.#ctor(System.String,Castle.MicroKernel.IKernel,Castle.Windsor.IComponentsInstaller)">
|
697
|
+
<summary>
|
698
|
+
Constructs a container using the specified <see cref="T:Castle.MicroKernel.IKernel"/>
|
699
|
+
implementation. Rarely used.
|
700
|
+
</summary>
|
701
|
+
<remarks>
|
702
|
+
This constructs sets the Kernel.ProxyFactory property to
|
703
|
+
<c>Proxy.DefaultProxyFactory</c>
|
704
|
+
</remarks>
|
705
|
+
<param name="name">Container's name</param>
|
706
|
+
<param name="kernel">Kernel instance</param>
|
707
|
+
<param name="installer">Installer instance</param>
|
708
|
+
</member>
|
709
|
+
<member name="M:Castle.Windsor.WindsorContainer.#ctor(Castle.MicroKernel.IProxyFactory)">
|
710
|
+
<summary>
|
711
|
+
Constructs with a given <see cref="T:Castle.MicroKernel.IProxyFactory"/>.
|
712
|
+
</summary>
|
713
|
+
<param name="proxyFactory">A instance of an <see cref="T:Castle.MicroKernel.IProxyFactory"/>.</param>
|
714
|
+
</member>
|
715
|
+
<member name="M:Castle.Windsor.WindsorContainer.#ctor(Castle.Windsor.IWindsorContainer,Castle.Windsor.Configuration.IConfigurationInterpreter)">
|
716
|
+
<summary>
|
717
|
+
Constructs a container assigning a parent container
|
718
|
+
before starting the dependency resolution.
|
719
|
+
</summary>
|
720
|
+
<param name="parent">The instance of an <see cref="T:Castle.Windsor.IWindsorContainer"/></param>
|
721
|
+
<param name="interpreter">The instance of an <see cref="T:Castle.Windsor.Configuration.IConfigurationInterpreter"/> implementation</param>
|
722
|
+
</member>
|
723
|
+
<member name="M:Castle.Windsor.WindsorContainer.#ctor(System.String,Castle.Windsor.IWindsorContainer,Castle.Windsor.Configuration.IConfigurationInterpreter)">
|
724
|
+
<summary>
|
725
|
+
Initializes a new instance of the <see cref="T:Castle.Windsor.WindsorContainer"/> class.
|
726
|
+
</summary>
|
727
|
+
<param name="name">The container's name.</param>
|
728
|
+
<param name="parent">The parent.</param>
|
729
|
+
<param name="interpreter">The interpreter.</param>
|
730
|
+
</member>
|
731
|
+
<member name="M:Castle.Windsor.WindsorContainer.AddFacility(System.String,Castle.MicroKernel.IFacility)">
|
732
|
+
<summary>
|
733
|
+
Registers a facility within the kernel.
|
734
|
+
</summary>
|
735
|
+
<param name="key"></param>
|
736
|
+
<param name="facility"></param>
|
737
|
+
</member>
|
738
|
+
<member name="M:Castle.Windsor.WindsorContainer.AddFacility``1(System.String)">
|
739
|
+
<summary>
|
740
|
+
Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
|
741
|
+
</summary>
|
742
|
+
<typeparam name="T">The facility type.</typeparam>
|
743
|
+
<param name="key"></param>
|
744
|
+
<returns></returns>
|
745
|
+
</member>
|
746
|
+
<member name="M:Castle.Windsor.WindsorContainer.AddFacility``1(System.String,System.Action{``0})">
|
747
|
+
<summary>
|
748
|
+
Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
|
749
|
+
</summary>
|
750
|
+
<typeparam name="T">The facility type.</typeparam>
|
751
|
+
<param name="key"></param>
|
752
|
+
<param name="onCreate">The callback for creation.</param>
|
753
|
+
<returns></returns>
|
754
|
+
</member>
|
755
|
+
<member name="M:Castle.Windsor.WindsorContainer.AddFacility``1(System.String,System.Func{``0,System.Object})">
|
756
|
+
<summary>
|
757
|
+
Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
|
758
|
+
</summary>
|
759
|
+
<typeparam name="T">The facility type.</typeparam>
|
760
|
+
<param name="key"></param>
|
761
|
+
<param name="onCreate">The callback for creation.</param>
|
762
|
+
<returns></returns>
|
763
|
+
</member>
|
764
|
+
<member name="M:Castle.Windsor.WindsorContainer.AddFacility``1">
|
765
|
+
<summary>
|
766
|
+
Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
|
767
|
+
</summary>
|
768
|
+
<typeparam name="T">The facility type.</typeparam>
|
769
|
+
<returns></returns>
|
770
|
+
</member>
|
771
|
+
<member name="M:Castle.Windsor.WindsorContainer.AddFacility``1(System.Action{``0})">
|
772
|
+
<summary>
|
773
|
+
Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
|
774
|
+
</summary>
|
775
|
+
<typeparam name="T">The facility type.</typeparam>
|
776
|
+
<param name="onCreate">The callback for creation.</param>
|
777
|
+
<returns></returns>
|
778
|
+
</member>
|
779
|
+
<member name="M:Castle.Windsor.WindsorContainer.AddFacility``1(System.Func{``0,System.Object})">
|
780
|
+
<summary>
|
781
|
+
Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
|
782
|
+
</summary>
|
783
|
+
<typeparam name="T">The facility type.</typeparam>
|
784
|
+
<param name="onCreate">The callback for creation.</param>
|
785
|
+
<returns></returns>
|
786
|
+
</member>
|
787
|
+
<member name="M:Castle.Windsor.WindsorContainer.AddComponent(System.String,System.Type)">
|
788
|
+
<summary>
|
789
|
+
Adds a component to be managed by the container
|
790
|
+
</summary>
|
791
|
+
<param name="key"></param>
|
792
|
+
<param name="classType"></param>
|
793
|
+
</member>
|
794
|
+
<member name="M:Castle.Windsor.WindsorContainer.AddComponent(System.String,System.Type,System.Type)">
|
795
|
+
<summary>
|
796
|
+
Adds a component to be managed by the container
|
797
|
+
</summary>
|
798
|
+
<param name="key"></param>
|
799
|
+
<param name="serviceType"></param>
|
800
|
+
<param name="classType"></param>
|
801
|
+
</member>
|
802
|
+
<member name="M:Castle.Windsor.WindsorContainer.AddComponentLifeStyle(System.String,System.Type,Castle.Core.LifestyleType)">
|
803
|
+
<summary>
|
804
|
+
Adds a component to be managed by the container
|
805
|
+
</summary>
|
806
|
+
<param name="key">The key by which the component gets indexed.</param>
|
807
|
+
<param name="classType">The <see cref="T:System.Type"/> to manage.</param>
|
808
|
+
<param name="lifestyle">The <see cref="T:Castle.Core.LifestyleType"/> with which to manage the component.</param>
|
809
|
+
</member>
|
810
|
+
<member name="M:Castle.Windsor.WindsorContainer.AddComponentLifeStyle(System.String,System.Type,System.Type,Castle.Core.LifestyleType)">
|
811
|
+
<summary>
|
812
|
+
Adds a component to be managed by the container
|
813
|
+
</summary>
|
814
|
+
<param name="key">The key by which the component gets indexed.</param>
|
815
|
+
<param name="serviceType">The service <see cref="T:System.Type"/> that the component implements.</param>
|
816
|
+
<param name="classType">The <see cref="T:System.Type"/> to manage.</param>
|
817
|
+
<param name="lifestyle">The <see cref="T:Castle.Core.LifestyleType"/> with which to manage the component.</param>
|
818
|
+
</member>
|
819
|
+
<member name="M:Castle.Windsor.WindsorContainer.AddComponent``1">
|
820
|
+
<summary>
|
821
|
+
Adds a component to be managed by the container.
|
822
|
+
The key to obtain the component will be the FullName of the type.
|
823
|
+
</summary>
|
824
|
+
<typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
|
825
|
+
</member>
|
826
|
+
<member name="M:Castle.Windsor.WindsorContainer.AddComponent``1(System.String)">
|
827
|
+
<summary>
|
828
|
+
Adds a component to be managed by the container
|
829
|
+
</summary>
|
830
|
+
<typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
|
831
|
+
<param name="key">The key by which the component gets indexed.</param>
|
832
|
+
</member>
|
833
|
+
<member name="M:Castle.Windsor.WindsorContainer.AddComponentLifeStyle``1(Castle.Core.LifestyleType)">
|
834
|
+
<summary>
|
835
|
+
Adds a component to be managed by the container.
|
836
|
+
The key to obtain the component will be the FullName of the type.
|
837
|
+
</summary>
|
838
|
+
<typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
|
839
|
+
<param name="lifestyle">The <see cref="T:Castle.Core.LifestyleType"/> with which to manage the component.</param>
|
840
|
+
</member>
|
841
|
+
<member name="M:Castle.Windsor.WindsorContainer.AddComponent``2(System.String)">
|
842
|
+
<summary>
|
843
|
+
Adds a component to be managed by the container
|
844
|
+
</summary>
|
845
|
+
<typeparam name="I">The service <see cref="T:System.Type"/> that the component implements.</typeparam>
|
846
|
+
<typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
|
847
|
+
<param name="key">The key by which the component gets indexed.</param>
|
848
|
+
</member>
|
849
|
+
<member name="M:Castle.Windsor.WindsorContainer.AddComponentLifeStyle``2(Castle.Core.LifestyleType)">
|
850
|
+
<summary>
|
851
|
+
Adds a component to be managed by the container
|
852
|
+
The key to obtain the component will be the FullName of the type.
|
853
|
+
</summary>
|
854
|
+
<typeparam name="I">The service <see cref="T:System.Type"/> that the component implements.</typeparam>
|
855
|
+
<typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
|
856
|
+
<param name="lifestyle">The <see cref="T:Castle.Core.LifestyleType"/> with which to manage the component.</param>
|
857
|
+
</member>
|
858
|
+
<member name="M:Castle.Windsor.WindsorContainer.AddComponentLifeStyle``1(System.String,Castle.Core.LifestyleType)">
|
859
|
+
<summary>
|
860
|
+
Adds a component to be managed by the container
|
861
|
+
</summary>
|
862
|
+
<typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
|
863
|
+
<param name="key">The key by which the component gets indexed.</param>
|
864
|
+
<param name="lifestyle">The <see cref="T:Castle.Core.LifestyleType"/> with which to manage the component.</param>
|
865
|
+
</member>
|
866
|
+
<member name="M:Castle.Windsor.WindsorContainer.AddComponent``2">
|
867
|
+
<summary>
|
868
|
+
Adds a component to be managed by the container
|
869
|
+
The key to obtain the component will be the FullName of the type.
|
870
|
+
</summary>
|
871
|
+
<typeparam name="I">The service <see cref="T:System.Type"/> that the component implements.</typeparam>
|
872
|
+
<typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
|
873
|
+
</member>
|
874
|
+
<member name="M:Castle.Windsor.WindsorContainer.AddComponentLifeStyle``2(System.String,Castle.Core.LifestyleType)">
|
875
|
+
<summary>
|
876
|
+
Adds a component to be managed by the container
|
877
|
+
</summary>
|
878
|
+
<typeparam name="I">The service <see cref="T:System.Type"/> that the component implements.</typeparam>
|
879
|
+
<typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
|
880
|
+
<param name="key">The key by which the component gets indexed.</param>
|
881
|
+
<param name="lifestyle">The <see cref="T:Castle.Core.LifestyleType"/> with which to manage the component.</param>
|
882
|
+
</member>
|
883
|
+
<member name="M:Castle.Windsor.WindsorContainer.AddComponentWithProperties``1(System.Collections.IDictionary)">
|
884
|
+
<summary>
|
885
|
+
Adds a concrete class as a component and specify the extended properties.
|
886
|
+
Used by facilities, mostly.
|
887
|
+
The key to obtain the component will be the FullName of the type.
|
888
|
+
</summary>
|
889
|
+
<typeparam name="T"></typeparam>
|
890
|
+
<param name="extendedProperties"></param>
|
891
|
+
</member>
|
892
|
+
<member name="M:Castle.Windsor.WindsorContainer.AddComponentWithProperties``1(System.String,System.Collections.IDictionary)">
|
893
|
+
<summary>
|
894
|
+
Adds a concrete class as a component and specify the extended properties.
|
895
|
+
Used by facilities, mostly.
|
896
|
+
</summary>
|
897
|
+
<typeparam name="T"></typeparam>
|
898
|
+
<param name="key"></param>
|
899
|
+
<param name="extendedProperties"></param>
|
900
|
+
</member>
|
901
|
+
<member name="M:Castle.Windsor.WindsorContainer.AddComponentProperties``2(System.Collections.IDictionary)">
|
902
|
+
<summary>
|
903
|
+
Adds a concrete class and an interface
|
904
|
+
as a component and specify the extended properties.
|
905
|
+
Used by facilities, mostly.
|
906
|
+
The key to obtain the component will be the FullName of the type.
|
907
|
+
</summary>
|
908
|
+
<typeparam name="I"></typeparam>
|
909
|
+
<typeparam name="T"></typeparam>
|
910
|
+
<param name="extendedProperties"></param>
|
911
|
+
</member>
|
912
|
+
<member name="M:Castle.Windsor.WindsorContainer.AddComponentProperties``2(System.String,System.Collections.IDictionary)">
|
913
|
+
<summary>
|
914
|
+
Adds a concrete class and an interface
|
915
|
+
as a component and specify the extended properties.
|
916
|
+
Used by facilities, mostly.
|
917
|
+
</summary>
|
918
|
+
<typeparam name="I"></typeparam>
|
919
|
+
<typeparam name="T"></typeparam>
|
920
|
+
<param name="key"></param>
|
921
|
+
<param name="extendedProperties"></param>
|
922
|
+
</member>
|
923
|
+
<member name="M:Castle.Windsor.WindsorContainer.Register(Castle.MicroKernel.Registration.IRegistration[])">
|
924
|
+
<summary>
|
925
|
+
Registers the components described by the <see cref="T:Castle.MicroKernel.Registration.ComponentRegistration`1"/>s
|
926
|
+
with the <see cref="T:Castle.Windsor.IWindsorContainer"/>.
|
927
|
+
<param name="registrations">The component registrations.</param>
|
928
|
+
<returns>The container.</returns>
|
929
|
+
</summary>
|
930
|
+
</member>
|
931
|
+
<member name="M:Castle.Windsor.WindsorContainer.Install(Castle.Windsor.IWindsorInstaller[])">
|
932
|
+
<summary>
|
933
|
+
Installs the components provided by the <see cref="T:Castle.Windsor.IWindsorInstaller"/>s
|
934
|
+
with the <see cref="T:Castle.Windsor.IWindsorContainer"/>.
|
935
|
+
<param name="installers">The component installers.</param>
|
936
|
+
<returns>The container.</returns>
|
937
|
+
</summary>
|
938
|
+
</member>
|
939
|
+
<member name="M:Castle.Windsor.WindsorContainer.Resolve(System.String)">
|
940
|
+
<summary>
|
941
|
+
Returns a component instance by the key
|
942
|
+
</summary>
|
943
|
+
<param name="key"></param>
|
944
|
+
<returns></returns>
|
945
|
+
</member>
|
946
|
+
<member name="M:Castle.Windsor.WindsorContainer.Resolve(System.Type,System.Collections.IDictionary)">
|
947
|
+
<summary>
|
948
|
+
Returns a component instance by the service
|
949
|
+
</summary>
|
950
|
+
<param name="service"></param>
|
951
|
+
<param name="arguments"></param>
|
952
|
+
<returns></returns>
|
953
|
+
</member>
|
954
|
+
<member name="M:Castle.Windsor.WindsorContainer.Resolve(System.Type,System.Object)">
|
955
|
+
<summary>
|
956
|
+
Returns a component instance by the service
|
957
|
+
</summary>
|
958
|
+
<param name="service"></param>
|
959
|
+
<param name="argumentsAsAnonymousType"></param>
|
960
|
+
<returns></returns>
|
961
|
+
</member>
|
962
|
+
<member name="M:Castle.Windsor.WindsorContainer.Resolve(System.String,System.Collections.IDictionary)">
|
963
|
+
<summary>
|
964
|
+
Returns a component instance by the key
|
965
|
+
</summary>
|
966
|
+
<param name="key"></param>
|
967
|
+
<param name="arguments"></param>
|
968
|
+
<returns></returns>
|
969
|
+
</member>
|
970
|
+
<member name="M:Castle.Windsor.WindsorContainer.Resolve(System.String,System.Object)">
|
971
|
+
<summary>
|
972
|
+
Returns a component instance by the key
|
973
|
+
</summary>
|
974
|
+
<param name="key"></param>
|
975
|
+
<param name="argumentsAsAnonymousType"></param>
|
976
|
+
<returns></returns>
|
977
|
+
</member>
|
978
|
+
<member name="M:Castle.Windsor.WindsorContainer.Resolve(System.Type)">
|
979
|
+
<summary>
|
980
|
+
Returns a component instance by the service
|
981
|
+
</summary>
|
982
|
+
<param name="service"></param>
|
983
|
+
<returns></returns>
|
984
|
+
</member>
|
985
|
+
<member name="M:Castle.Windsor.WindsorContainer.ResolveAll``1">
|
986
|
+
<summary>
|
987
|
+
Resolve all valid components that match this type.
|
988
|
+
</summary>
|
989
|
+
<typeparam name="T">The service type</typeparam>
|
990
|
+
</member>
|
991
|
+
<member name="M:Castle.Windsor.WindsorContainer.ResolveAll``1(System.Collections.IDictionary)">
|
992
|
+
<summary>
|
993
|
+
Resolve all valid components that match this type.
|
994
|
+
<typeparam name="T">The service type</typeparam>
|
995
|
+
<param name="arguments">Arguments to resolve the service</param>
|
996
|
+
</summary>
|
997
|
+
</member>
|
998
|
+
<member name="M:Castle.Windsor.WindsorContainer.ResolveAll``1(System.Object)">
|
999
|
+
<summary>
|
1000
|
+
Resolve all valid components that match this type.
|
1001
|
+
<typeparam name="T">The service type</typeparam>
|
1002
|
+
<param name="argumentsAsAnonymousType">Arguments to resolve the service</param>
|
1003
|
+
</summary>
|
1004
|
+
</member>
|
1005
|
+
<member name="M:Castle.Windsor.WindsorContainer.Resolve(System.String,System.Type)">
|
1006
|
+
<summary>
|
1007
|
+
Returns a component instance by the key
|
1008
|
+
</summary>
|
1009
|
+
<param name="key"></param>
|
1010
|
+
<param name="service"></param>
|
1011
|
+
<returns></returns>
|
1012
|
+
</member>
|
1013
|
+
<member name="M:Castle.Windsor.WindsorContainer.Resolve(System.String,System.Type,System.Collections.IDictionary)">
|
1014
|
+
<summary>
|
1015
|
+
Returns a component instance by the key
|
1016
|
+
</summary>
|
1017
|
+
<param name="key"></param>
|
1018
|
+
<param name="service"></param>
|
1019
|
+
<param name="arguments"></param>
|
1020
|
+
<returns></returns>
|
1021
|
+
</member>
|
1022
|
+
<member name="M:Castle.Windsor.WindsorContainer.Resolve(System.String,System.Type,System.Object)">
|
1023
|
+
<summary>
|
1024
|
+
Returns a component instance by the key
|
1025
|
+
</summary>
|
1026
|
+
<param name="key"></param>
|
1027
|
+
<param name="service"></param>
|
1028
|
+
<param name="argumentsAsAnonymousType"></param>
|
1029
|
+
<returns></returns>
|
1030
|
+
</member>
|
1031
|
+
<member name="M:Castle.Windsor.WindsorContainer.Resolve``1(System.Collections.IDictionary)">
|
1032
|
+
<summary>
|
1033
|
+
Returns a component instance by the service
|
1034
|
+
</summary>
|
1035
|
+
<typeparam name="T"></typeparam>
|
1036
|
+
<param name="arguments"></param>
|
1037
|
+
<returns></returns>
|
1038
|
+
</member>
|
1039
|
+
<member name="M:Castle.Windsor.WindsorContainer.Resolve``1(System.Object)">
|
1040
|
+
<summary>
|
1041
|
+
Returns a component instance by the service
|
1042
|
+
</summary>
|
1043
|
+
<typeparam name="T"></typeparam>
|
1044
|
+
<param name="argumentsAsAnonymousType"></param>
|
1045
|
+
<returns></returns>
|
1046
|
+
</member>
|
1047
|
+
<member name="M:Castle.Windsor.WindsorContainer.Resolve``1(System.String,System.Collections.IDictionary)">
|
1048
|
+
<summary>
|
1049
|
+
Returns a component instance by the key
|
1050
|
+
</summary>
|
1051
|
+
<param name="key"></param>
|
1052
|
+
<param name="arguments"></param>
|
1053
|
+
<returns></returns>
|
1054
|
+
</member>
|
1055
|
+
<member name="M:Castle.Windsor.WindsorContainer.Resolve``1(System.String,System.Object)">
|
1056
|
+
<summary>
|
1057
|
+
Returns a component instance by the key
|
1058
|
+
</summary>
|
1059
|
+
<param name="key"></param>
|
1060
|
+
<param name="argumentsAsAnonymousType"></param>
|
1061
|
+
<returns></returns>
|
1062
|
+
</member>
|
1063
|
+
<member name="M:Castle.Windsor.WindsorContainer.Resolve``1">
|
1064
|
+
<summary>
|
1065
|
+
Returns a component instance by the service
|
1066
|
+
</summary>
|
1067
|
+
<typeparam name="T"></typeparam>
|
1068
|
+
<returns></returns>
|
1069
|
+
</member>
|
1070
|
+
<member name="M:Castle.Windsor.WindsorContainer.Resolve``1(System.String)">
|
1071
|
+
<summary>
|
1072
|
+
Returns a component instance by the key
|
1073
|
+
</summary>
|
1074
|
+
<param name="key"></param>
|
1075
|
+
<returns></returns>
|
1076
|
+
</member>
|
1077
|
+
<member name="M:Castle.Windsor.WindsorContainer.Release(System.Object)">
|
1078
|
+
<summary>
|
1079
|
+
Releases a component instance
|
1080
|
+
</summary>
|
1081
|
+
<param name="instance"></param>
|
1082
|
+
</member>
|
1083
|
+
<member name="M:Castle.Windsor.WindsorContainer.AddChildContainer(Castle.Windsor.IWindsorContainer)">
|
1084
|
+
<summary>
|
1085
|
+
Registers a subcontainer. The components exposed
|
1086
|
+
by this container will be accessible from subcontainers.
|
1087
|
+
</summary>
|
1088
|
+
<param name="childContainer"></param>
|
1089
|
+
</member>
|
1090
|
+
<member name="M:Castle.Windsor.WindsorContainer.RemoveChildContainer(Castle.Windsor.IWindsorContainer)">
|
1091
|
+
<summary>
|
1092
|
+
Removes (unregisters) a subcontainer. The components exposed by this container
|
1093
|
+
will no longer be accessible to the child container.
|
1094
|
+
</summary>
|
1095
|
+
<param name="childContainer"></param>
|
1096
|
+
</member>
|
1097
|
+
<member name="M:Castle.Windsor.WindsorContainer.GetChildContainer(System.String)">
|
1098
|
+
<summary>
|
1099
|
+
Gets a child container instance by name.
|
1100
|
+
</summary>
|
1101
|
+
<param name="name">The container's name.</param>
|
1102
|
+
<returns>The child container instance or null</returns>
|
1103
|
+
</member>
|
1104
|
+
<member name="M:Castle.Windsor.WindsorContainer.GetService(System.Type)">
|
1105
|
+
<summary>
|
1106
|
+
Gets the service object of the specified type.
|
1107
|
+
</summary>
|
1108
|
+
<returns>
|
1109
|
+
A service object of type serviceType.
|
1110
|
+
</returns>
|
1111
|
+
<param name="serviceType">An object that specifies the type of service object to get. </param>
|
1112
|
+
</member>
|
1113
|
+
<member name="M:Castle.Windsor.WindsorContainer.GetService``1">
|
1114
|
+
<summary>
|
1115
|
+
Gets the service object of the specified type.
|
1116
|
+
</summary>
|
1117
|
+
<returns>
|
1118
|
+
A service object of type serviceType.
|
1119
|
+
</returns>
|
1120
|
+
</member>
|
1121
|
+
<member name="M:Castle.Windsor.WindsorContainer.Dispose">
|
1122
|
+
<summary>
|
1123
|
+
Executes Dispose on underlying <see cref="T:Castle.MicroKernel.IKernel"/>
|
1124
|
+
</summary>
|
1125
|
+
</member>
|
1126
|
+
<member name="P:Castle.Windsor.WindsorContainer.Name">
|
1127
|
+
<summary>
|
1128
|
+
Gets the container's name
|
1129
|
+
</summary>
|
1130
|
+
<remarks>
|
1131
|
+
Only useful when child containers are being used
|
1132
|
+
</remarks>
|
1133
|
+
<value>The container's name.</value>
|
1134
|
+
</member>
|
1135
|
+
<member name="P:Castle.Windsor.WindsorContainer.Kernel">
|
1136
|
+
<summary>
|
1137
|
+
Returns the inner instance of the MicroKernel
|
1138
|
+
</summary>
|
1139
|
+
</member>
|
1140
|
+
<member name="P:Castle.Windsor.WindsorContainer.Parent">
|
1141
|
+
<summary>
|
1142
|
+
Gets or sets the parent container if this instance
|
1143
|
+
is a sub container.
|
1144
|
+
</summary>
|
1145
|
+
</member>
|
1146
|
+
<member name="P:Castle.Windsor.WindsorContainer.Item(System.String)">
|
1147
|
+
<summary>
|
1148
|
+
Shortcut to the method <see cref="M:Castle.Windsor.WindsorContainer.Resolve(System.String)"/>
|
1149
|
+
</summary>
|
1150
|
+
</member>
|
1151
|
+
<member name="P:Castle.Windsor.WindsorContainer.Item(System.Type)">
|
1152
|
+
<summary>
|
1153
|
+
Shortcut to the method <see cref="M:Castle.Windsor.WindsorContainer.Resolve(System.Type)"/>
|
1154
|
+
</summary>
|
1155
|
+
</member>
|
1156
|
+
</members>
|
1157
|
+
</doc>
|