ninject 2.0.0.0.20100801
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/mono-2.0/Ninject.dll +0 -0
- data/lib/mono-2.0/Ninject.xml +4061 -0
- data/lib/net-3.5/Ninject.dll +0 -0
- data/lib/net-3.5/Ninject.xml +4026 -0
- data/lib/netcf-3.5/Ninject.dll +0 -0
- data/lib/netcf-3.5/Ninject.xml +3819 -0
- data/lib/silverlight-2.0/Ninject.dll +0 -0
- data/lib/silverlight-2.0/Ninject.xml +3840 -0
- data/lib/silverlight-3.0/Ninject.dll +0 -0
- data/lib/silverlight-3.0/Ninject.xml +3840 -0
- metadata +78 -0
Binary file
|
@@ -0,0 +1,3840 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<doc>
|
3
|
+
<assembly>
|
4
|
+
<name>Ninject</name>
|
5
|
+
</assembly>
|
6
|
+
<members>
|
7
|
+
<member name="T:Ninject.Activation.Blocks.ActivationBlock">
|
8
|
+
<summary>
|
9
|
+
A block used for deterministic disposal of activated instances. When the block is
|
10
|
+
disposed, all instances activated via it will be deactivated.
|
11
|
+
</summary>
|
12
|
+
</member>
|
13
|
+
<member name="T:Ninject.Infrastructure.Disposal.DisposableObject">
|
14
|
+
<summary>
|
15
|
+
An object that notifies when it is disposed.
|
16
|
+
</summary>
|
17
|
+
</member>
|
18
|
+
<member name="T:Ninject.Infrastructure.Disposal.IDisposableObject">
|
19
|
+
<summary>
|
20
|
+
An object that can report whether or not it is disposed.
|
21
|
+
</summary>
|
22
|
+
</member>
|
23
|
+
<member name="P:Ninject.Infrastructure.Disposal.IDisposableObject.IsDisposed">
|
24
|
+
<summary>
|
25
|
+
Gets a value indicating whether this instance is disposed.
|
26
|
+
</summary>
|
27
|
+
</member>
|
28
|
+
<member name="M:Ninject.Infrastructure.Disposal.DisposableObject.Dispose">
|
29
|
+
<summary>
|
30
|
+
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
|
31
|
+
</summary>
|
32
|
+
</member>
|
33
|
+
<member name="M:Ninject.Infrastructure.Disposal.DisposableObject.Dispose(System.Boolean)">
|
34
|
+
<summary>
|
35
|
+
Releases resources held by the object.
|
36
|
+
</summary>
|
37
|
+
</member>
|
38
|
+
<member name="M:Ninject.Infrastructure.Disposal.DisposableObject.Finalize">
|
39
|
+
<summary>
|
40
|
+
Releases resources before the object is reclaimed by garbage collection.
|
41
|
+
</summary>
|
42
|
+
</member>
|
43
|
+
<member name="P:Ninject.Infrastructure.Disposal.DisposableObject.IsDisposed">
|
44
|
+
<summary>
|
45
|
+
Gets a value indicating whether this instance is disposed.
|
46
|
+
</summary>
|
47
|
+
</member>
|
48
|
+
<member name="T:Ninject.Activation.Blocks.IActivationBlock">
|
49
|
+
<summary>
|
50
|
+
A block used for deterministic disposal of activated instances. When the block is
|
51
|
+
disposed, all instances activated via it will be deactivated.
|
52
|
+
</summary>
|
53
|
+
</member>
|
54
|
+
<member name="T:Ninject.Syntax.IResolutionRoot">
|
55
|
+
<summary>
|
56
|
+
Provides a path to resolve instances.
|
57
|
+
</summary>
|
58
|
+
</member>
|
59
|
+
<member name="M:Ninject.Syntax.IResolutionRoot.CanResolve(Ninject.Activation.IRequest)">
|
60
|
+
<summary>
|
61
|
+
Determines whether the specified request can be resolved.
|
62
|
+
</summary>
|
63
|
+
<param name="request">The request.</param>
|
64
|
+
<returns><c>True</c> if the request can be resolved; otherwise, <c>false</c>.</returns>
|
65
|
+
</member>
|
66
|
+
<member name="M:Ninject.Syntax.IResolutionRoot.Resolve(Ninject.Activation.IRequest)">
|
67
|
+
<summary>
|
68
|
+
Resolves instances for the specified request. The instances are not actually resolved
|
69
|
+
until a consumer iterates over the enumerator.
|
70
|
+
</summary>
|
71
|
+
<param name="request">The request to resolve.</param>
|
72
|
+
<returns>An enumerator of instances that match the request.</returns>
|
73
|
+
</member>
|
74
|
+
<member name="M:Ninject.Syntax.IResolutionRoot.CreateRequest(System.Type,System.Func{Ninject.Planning.Bindings.IBindingMetadata,System.Boolean},System.Collections.Generic.IEnumerable{Ninject.Parameters.IParameter},System.Boolean,System.Boolean)">
|
75
|
+
<summary>
|
76
|
+
Creates a request for the specified service.
|
77
|
+
</summary>
|
78
|
+
<param name="service">The service that is being requested.</param>
|
79
|
+
<param name="constraint">The constraint to apply to the bindings to determine if they match the request.</param>
|
80
|
+
<param name="parameters">The parameters to pass to the resolution.</param>
|
81
|
+
<param name="isOptional"><c>True</c> if the request is optional; otherwise, <c>false</c>.</param>
|
82
|
+
<param name="isUnique"><c>True</c> if the request should return a unique result; otherwise, <c>false</c>.</param>
|
83
|
+
<returns>The created request.</returns>
|
84
|
+
</member>
|
85
|
+
<member name="T:Ninject.Infrastructure.Disposal.INotifyWhenDisposed">
|
86
|
+
<summary>
|
87
|
+
An object that fires an event when it is disposed.
|
88
|
+
</summary>
|
89
|
+
</member>
|
90
|
+
<member name="E:Ninject.Infrastructure.Disposal.INotifyWhenDisposed.Disposed">
|
91
|
+
<summary>
|
92
|
+
Occurs when the object is disposed.
|
93
|
+
</summary>
|
94
|
+
</member>
|
95
|
+
<member name="M:Ninject.Activation.Blocks.ActivationBlock.#ctor(Ninject.Syntax.IResolutionRoot)">
|
96
|
+
<summary>
|
97
|
+
Initializes a new instance of the <see cref="T:Ninject.Activation.Blocks.ActivationBlock"/> class.
|
98
|
+
</summary>
|
99
|
+
<param name="parent">The parent resolution root.</param>
|
100
|
+
</member>
|
101
|
+
<member name="M:Ninject.Activation.Blocks.ActivationBlock.Dispose(System.Boolean)">
|
102
|
+
<summary>
|
103
|
+
Releases resources held by the object.
|
104
|
+
</summary>
|
105
|
+
</member>
|
106
|
+
<member name="M:Ninject.Activation.Blocks.ActivationBlock.CanResolve(Ninject.Activation.IRequest)">
|
107
|
+
<summary>
|
108
|
+
Determines whether the specified request can be resolved.
|
109
|
+
</summary>
|
110
|
+
<param name="request">The request.</param>
|
111
|
+
<returns><c>True</c> if the request can be resolved; otherwise, <c>false</c>.</returns>
|
112
|
+
</member>
|
113
|
+
<member name="M:Ninject.Activation.Blocks.ActivationBlock.Resolve(Ninject.Activation.IRequest)">
|
114
|
+
<summary>
|
115
|
+
Resolves instances for the specified request. The instances are not actually resolved
|
116
|
+
until a consumer iterates over the enumerator.
|
117
|
+
</summary>
|
118
|
+
<param name="request">The request to resolve.</param>
|
119
|
+
<returns>An enumerator of instances that match the request.</returns>
|
120
|
+
</member>
|
121
|
+
<member name="M:Ninject.Activation.Blocks.ActivationBlock.CreateRequest(System.Type,System.Func{Ninject.Planning.Bindings.IBindingMetadata,System.Boolean},System.Collections.Generic.IEnumerable{Ninject.Parameters.IParameter},System.Boolean,System.Boolean)">
|
122
|
+
<summary>
|
123
|
+
Creates a request for the specified service.
|
124
|
+
</summary>
|
125
|
+
<param name="service">The service that is being requested.</param>
|
126
|
+
<param name="constraint">The constraint to apply to the bindings to determine if they match the request.</param>
|
127
|
+
<param name="parameters">The parameters to pass to the resolution.</param>
|
128
|
+
<param name="isOptional"><c>True</c> if the request is optional; otherwise, <c>false</c>.</param>
|
129
|
+
<param name="isUnique"><c>True</c> if the request should return a unique result; otherwise, <c>false</c>.</param>
|
130
|
+
<returns>The created request.</returns>
|
131
|
+
</member>
|
132
|
+
<member name="P:Ninject.Activation.Blocks.ActivationBlock.Parent">
|
133
|
+
<summary>
|
134
|
+
Gets or sets the parent resolution root (usually the kernel).
|
135
|
+
</summary>
|
136
|
+
</member>
|
137
|
+
<member name="E:Ninject.Activation.Blocks.ActivationBlock.Disposed">
|
138
|
+
<summary>
|
139
|
+
Occurs when the object is disposed.
|
140
|
+
</summary>
|
141
|
+
</member>
|
142
|
+
<member name="T:Ninject.Activation.Caching.Cache">
|
143
|
+
<summary>
|
144
|
+
Tracks instances for re-use in certain scopes.
|
145
|
+
</summary>
|
146
|
+
</member>
|
147
|
+
<member name="T:Ninject.Components.NinjectComponent">
|
148
|
+
<summary>
|
149
|
+
A component that contributes to the internals of Ninject.
|
150
|
+
</summary>
|
151
|
+
</member>
|
152
|
+
<member name="T:Ninject.Components.INinjectComponent">
|
153
|
+
<summary>
|
154
|
+
A component that contributes to the internals of Ninject.
|
155
|
+
</summary>
|
156
|
+
</member>
|
157
|
+
<member name="P:Ninject.Components.INinjectComponent.Settings">
|
158
|
+
<summary>
|
159
|
+
Gets or sets the settings.
|
160
|
+
</summary>
|
161
|
+
</member>
|
162
|
+
<member name="P:Ninject.Components.NinjectComponent.Settings">
|
163
|
+
<summary>
|
164
|
+
Gets or sets the settings.
|
165
|
+
</summary>
|
166
|
+
</member>
|
167
|
+
<member name="T:Ninject.Activation.Caching.ICache">
|
168
|
+
<summary>
|
169
|
+
Tracks instances for re-use in certain scopes.
|
170
|
+
</summary>
|
171
|
+
</member>
|
172
|
+
<member name="M:Ninject.Activation.Caching.ICache.Remember(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
|
173
|
+
<summary>
|
174
|
+
Stores the specified instance in the cache.
|
175
|
+
</summary>
|
176
|
+
<param name="context">The context to store.</param>
|
177
|
+
<param name="reference">The instance reference.</param>
|
178
|
+
</member>
|
179
|
+
<member name="M:Ninject.Activation.Caching.ICache.TryGet(Ninject.Activation.IContext)">
|
180
|
+
<summary>
|
181
|
+
Tries to retrieve an instance to re-use in the specified context.
|
182
|
+
</summary>
|
183
|
+
<param name="context">The context that is being activated.</param>
|
184
|
+
<returns>The instance for re-use, or <see langword="null"/> if none has been stored.</returns>
|
185
|
+
</member>
|
186
|
+
<member name="M:Ninject.Activation.Caching.ICache.Release(System.Object)">
|
187
|
+
<summary>
|
188
|
+
Deactivates and releases the specified instance from the cache.
|
189
|
+
</summary>
|
190
|
+
<param name="instance">The instance to release.</param>
|
191
|
+
<returns><see langword="True"/> if the instance was found and released; otherwise <see langword="false"/>.</returns>
|
192
|
+
</member>
|
193
|
+
<member name="M:Ninject.Activation.Caching.ICache.Prune">
|
194
|
+
<summary>
|
195
|
+
Removes instances from the cache which should no longer be re-used.
|
196
|
+
</summary>
|
197
|
+
</member>
|
198
|
+
<member name="M:Ninject.Activation.Caching.ICache.Clear(System.Object)">
|
199
|
+
<summary>
|
200
|
+
Immediately deactivates and removes all instances in the cache that are owned by
|
201
|
+
the specified scope.
|
202
|
+
</summary>
|
203
|
+
<param name="scope">The scope whose instances should be deactivated.</param>
|
204
|
+
</member>
|
205
|
+
<member name="M:Ninject.Activation.Caching.ICache.Clear">
|
206
|
+
<summary>
|
207
|
+
Immediately deactivates and removes all instances in the cache, regardless of scope.
|
208
|
+
</summary>
|
209
|
+
</member>
|
210
|
+
<member name="P:Ninject.Activation.Caching.ICache.Count">
|
211
|
+
<summary>
|
212
|
+
Gets the number of entries currently stored in the cache.
|
213
|
+
</summary>
|
214
|
+
</member>
|
215
|
+
<member name="M:Ninject.Activation.Caching.Cache.#ctor(Ninject.Activation.IPipeline,Ninject.Activation.Caching.ICachePruner)">
|
216
|
+
<summary>
|
217
|
+
Initializes a new instance of the <see cref="T:Ninject.Activation.Caching.Cache"/> class.
|
218
|
+
</summary>
|
219
|
+
<param name="pipeline">The pipeline component.</param>
|
220
|
+
<param name="cachePruner">The cache pruner component.</param>
|
221
|
+
</member>
|
222
|
+
<member name="M:Ninject.Activation.Caching.Cache.Dispose(System.Boolean)">
|
223
|
+
<summary>
|
224
|
+
Releases resources held by the object.
|
225
|
+
</summary>
|
226
|
+
</member>
|
227
|
+
<member name="M:Ninject.Activation.Caching.Cache.Remember(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
|
228
|
+
<summary>
|
229
|
+
Stores the specified context in the cache.
|
230
|
+
</summary>
|
231
|
+
<param name="context">The context to store.</param>
|
232
|
+
<param name="reference">The instance reference.</param>
|
233
|
+
</member>
|
234
|
+
<member name="M:Ninject.Activation.Caching.Cache.TryGet(Ninject.Activation.IContext)">
|
235
|
+
<summary>
|
236
|
+
Tries to retrieve an instance to re-use in the specified context.
|
237
|
+
</summary>
|
238
|
+
<param name="context">The context that is being activated.</param>
|
239
|
+
<returns>The instance for re-use, or <see langword="null"/> if none has been stored.</returns>
|
240
|
+
</member>
|
241
|
+
<member name="M:Ninject.Activation.Caching.Cache.Release(System.Object)">
|
242
|
+
<summary>
|
243
|
+
Deactivates and releases the specified instance from the cache.
|
244
|
+
</summary>
|
245
|
+
<param name="instance">The instance to release.</param>
|
246
|
+
<returns><see langword="True"/> if the instance was found and released; otherwise <see langword="false"/>.</returns>
|
247
|
+
</member>
|
248
|
+
<member name="M:Ninject.Activation.Caching.Cache.Prune">
|
249
|
+
<summary>
|
250
|
+
Removes instances from the cache which should no longer be re-used.
|
251
|
+
</summary>
|
252
|
+
</member>
|
253
|
+
<member name="M:Ninject.Activation.Caching.Cache.Clear(System.Object)">
|
254
|
+
<summary>
|
255
|
+
Immediately deactivates and removes all instances in the cache that are owned by
|
256
|
+
the specified scope.
|
257
|
+
</summary>
|
258
|
+
<param name="scope">The scope whose instances should be deactivated.</param>
|
259
|
+
</member>
|
260
|
+
<member name="M:Ninject.Activation.Caching.Cache.Clear">
|
261
|
+
<summary>
|
262
|
+
Immediately deactivates and removes all instances in the cache, regardless of scope.
|
263
|
+
</summary>
|
264
|
+
</member>
|
265
|
+
<member name="P:Ninject.Activation.Caching.Cache.Pipeline">
|
266
|
+
<summary>
|
267
|
+
Gets or sets the pipeline component.
|
268
|
+
</summary>
|
269
|
+
</member>
|
270
|
+
<member name="P:Ninject.Activation.Caching.Cache.Count">
|
271
|
+
<summary>
|
272
|
+
Gets the number of entries currently stored in the cache.
|
273
|
+
</summary>
|
274
|
+
</member>
|
275
|
+
<member name="T:Ninject.Activation.Caching.GarbageCollectionCachePruner">
|
276
|
+
<summary>
|
277
|
+
Uses a <see cref="T:System.Threading.Timer"/> and some <see cref="T:System.WeakReference"/> magic to poll
|
278
|
+
the garbage collector to see if it has run.
|
279
|
+
</summary>
|
280
|
+
</member>
|
281
|
+
<member name="T:Ninject.Activation.Caching.ICachePruner">
|
282
|
+
<summary>
|
283
|
+
Prunes instances from an <see cref="T:Ninject.Activation.Caching.ICache"/> based on environmental information.
|
284
|
+
</summary>
|
285
|
+
</member>
|
286
|
+
<member name="M:Ninject.Activation.Caching.ICachePruner.Start(Ninject.Activation.Caching.ICache)">
|
287
|
+
<summary>
|
288
|
+
Starts pruning the specified cache based on the rules of the pruner.
|
289
|
+
</summary>
|
290
|
+
<param name="cache">The cache that will be pruned.</param>
|
291
|
+
</member>
|
292
|
+
<member name="M:Ninject.Activation.Caching.ICachePruner.Stop">
|
293
|
+
<summary>
|
294
|
+
Stops pruning.
|
295
|
+
</summary>
|
296
|
+
</member>
|
297
|
+
<member name="M:Ninject.Activation.Caching.GarbageCollectionCachePruner.Dispose(System.Boolean)">
|
298
|
+
<summary>
|
299
|
+
Releases resources held by the object.
|
300
|
+
</summary>
|
301
|
+
</member>
|
302
|
+
<member name="M:Ninject.Activation.Caching.GarbageCollectionCachePruner.Start(Ninject.Activation.Caching.ICache)">
|
303
|
+
<summary>
|
304
|
+
Starts pruning the specified cache based on the rules of the pruner.
|
305
|
+
</summary>
|
306
|
+
<param name="cache">The cache that will be pruned.</param>
|
307
|
+
</member>
|
308
|
+
<member name="M:Ninject.Activation.Caching.GarbageCollectionCachePruner.Stop">
|
309
|
+
<summary>
|
310
|
+
Stops pruning.
|
311
|
+
</summary>
|
312
|
+
</member>
|
313
|
+
<member name="P:Ninject.Activation.Caching.GarbageCollectionCachePruner.Cache">
|
314
|
+
<summary>
|
315
|
+
Gets the cache that is being pruned.
|
316
|
+
</summary>
|
317
|
+
</member>
|
318
|
+
<member name="T:Ninject.Activation.Providers.CallbackProvider`1">
|
319
|
+
<summary>
|
320
|
+
A provider that delegates to a callback method to create instances.
|
321
|
+
</summary>
|
322
|
+
<typeparam name="T">The type of instances the provider creates.</typeparam>
|
323
|
+
</member>
|
324
|
+
<member name="T:Ninject.Activation.Provider`1">
|
325
|
+
<summary>
|
326
|
+
A simple abstract provider for instances of a specific type.
|
327
|
+
</summary>
|
328
|
+
<typeparam name="T">The type of instances the provider creates.</typeparam>
|
329
|
+
</member>
|
330
|
+
<member name="T:Ninject.Activation.IProvider">
|
331
|
+
<summary>
|
332
|
+
Creates instances of services.
|
333
|
+
</summary>
|
334
|
+
</member>
|
335
|
+
<member name="M:Ninject.Activation.IProvider.Create(Ninject.Activation.IContext)">
|
336
|
+
<summary>
|
337
|
+
Creates an instance within the specified context.
|
338
|
+
</summary>
|
339
|
+
<param name="context">The context.</param>
|
340
|
+
<returns>The created instance.</returns>
|
341
|
+
</member>
|
342
|
+
<member name="P:Ninject.Activation.IProvider.Type">
|
343
|
+
<summary>
|
344
|
+
Gets the type (or prototype) of instances the provider creates.
|
345
|
+
</summary>
|
346
|
+
</member>
|
347
|
+
<member name="M:Ninject.Activation.Provider`1.Create(Ninject.Activation.IContext)">
|
348
|
+
<summary>
|
349
|
+
Creates an instance within the specified context.
|
350
|
+
</summary>
|
351
|
+
<param name="context">The context.</param>
|
352
|
+
<returns>The created instance.</returns>
|
353
|
+
</member>
|
354
|
+
<member name="M:Ninject.Activation.Provider`1.CreateInstance(Ninject.Activation.IContext)">
|
355
|
+
<summary>
|
356
|
+
Creates an instance within the specified context.
|
357
|
+
</summary>
|
358
|
+
<param name="context">The context.</param>
|
359
|
+
<returns>The created instance.</returns>
|
360
|
+
</member>
|
361
|
+
<member name="P:Ninject.Activation.Provider`1.Type">
|
362
|
+
<summary>
|
363
|
+
Gets the type (or prototype) of instances the provider creates.
|
364
|
+
</summary>
|
365
|
+
</member>
|
366
|
+
<member name="M:Ninject.Activation.Providers.CallbackProvider`1.#ctor(System.Func{Ninject.Activation.IContext,`0})">
|
367
|
+
<summary>
|
368
|
+
Initializes a new instance of the CallbackProvider<T> class.
|
369
|
+
</summary>
|
370
|
+
<param name="method">The callback method that will be called to create instances.</param>
|
371
|
+
</member>
|
372
|
+
<member name="M:Ninject.Activation.Providers.CallbackProvider`1.CreateInstance(Ninject.Activation.IContext)">
|
373
|
+
<summary>
|
374
|
+
Invokes the callback method to create an instance.
|
375
|
+
</summary>
|
376
|
+
<param name="context">The context.</param>
|
377
|
+
<returns>The created instance.</returns>
|
378
|
+
</member>
|
379
|
+
<member name="P:Ninject.Activation.Providers.CallbackProvider`1.Method">
|
380
|
+
<summary>
|
381
|
+
Gets the callback method used by the provider.
|
382
|
+
</summary>
|
383
|
+
</member>
|
384
|
+
<member name="T:Ninject.Activation.Providers.ConstantProvider`1">
|
385
|
+
<summary>
|
386
|
+
A provider that always returns the same constant value.
|
387
|
+
</summary>
|
388
|
+
<typeparam name="T">The type of value that is returned.</typeparam>
|
389
|
+
</member>
|
390
|
+
<member name="M:Ninject.Activation.Providers.ConstantProvider`1.#ctor(`0)">
|
391
|
+
<summary>
|
392
|
+
Initializes a new instance of the ConstantProvider<T> class.
|
393
|
+
</summary>
|
394
|
+
<param name="value">The value that the provider should return.</param>
|
395
|
+
</member>
|
396
|
+
<member name="M:Ninject.Activation.Providers.ConstantProvider`1.CreateInstance(Ninject.Activation.IContext)">
|
397
|
+
<summary>
|
398
|
+
Creates an instance within the specified context.
|
399
|
+
</summary>
|
400
|
+
<param name="context">The context.</param>
|
401
|
+
<returns>The constant value this provider returns.</returns>
|
402
|
+
</member>
|
403
|
+
<member name="P:Ninject.Activation.Providers.ConstantProvider`1.Value">
|
404
|
+
<summary>
|
405
|
+
Gets the value that the provider will return.
|
406
|
+
</summary>
|
407
|
+
</member>
|
408
|
+
<member name="T:Ninject.Activation.Providers.StandardProvider">
|
409
|
+
<summary>
|
410
|
+
The standard provider for types, which activates instances via a <see cref="T:Ninject.Activation.IPipeline"/>.
|
411
|
+
</summary>
|
412
|
+
</member>
|
413
|
+
<member name="M:Ninject.Activation.Providers.StandardProvider.#ctor(System.Type,Ninject.Planning.IPlanner,Ninject.Selection.ISelector)">
|
414
|
+
<summary>
|
415
|
+
Initializes a new instance of the <see cref="T:Ninject.Activation.Providers.StandardProvider"/> class.
|
416
|
+
</summary>
|
417
|
+
<param name="type">The type (or prototype) of instances the provider creates.</param>
|
418
|
+
<param name="planner">The planner component.</param>
|
419
|
+
<param name="selector">The selector component.</param>
|
420
|
+
</member>
|
421
|
+
<member name="M:Ninject.Activation.Providers.StandardProvider.Create(Ninject.Activation.IContext)">
|
422
|
+
<summary>
|
423
|
+
Creates an instance within the specified context.
|
424
|
+
</summary>
|
425
|
+
<param name="context">The context.</param>
|
426
|
+
<returns>The created instance.</returns>
|
427
|
+
</member>
|
428
|
+
<member name="M:Ninject.Activation.Providers.StandardProvider.GetValue(Ninject.Activation.IContext,Ninject.Planning.Targets.ITarget)">
|
429
|
+
<summary>
|
430
|
+
Gets the value to inject into the specified target.
|
431
|
+
</summary>
|
432
|
+
<param name="context">The context.</param>
|
433
|
+
<param name="target">The target.</param>
|
434
|
+
<returns>The value to inject into the specified target.</returns>
|
435
|
+
</member>
|
436
|
+
<member name="M:Ninject.Activation.Providers.StandardProvider.GetImplementationType(System.Type)">
|
437
|
+
<summary>
|
438
|
+
Gets the implementation type that the provider will activate an instance of
|
439
|
+
for the specified service.
|
440
|
+
</summary>
|
441
|
+
<param name="service">The service in question.</param>
|
442
|
+
<returns>The implementation type that will be activated.</returns>
|
443
|
+
</member>
|
444
|
+
<member name="M:Ninject.Activation.Providers.StandardProvider.GetCreationCallback(System.Type)">
|
445
|
+
<summary>
|
446
|
+
Gets a callback that creates an instance of the <see cref="T:Ninject.Activation.Providers.StandardProvider"/>
|
447
|
+
for the specified type.
|
448
|
+
</summary>
|
449
|
+
<param name="prototype">The prototype the provider instance will create.</param>
|
450
|
+
<returns>The created callback.</returns>
|
451
|
+
</member>
|
452
|
+
<member name="P:Ninject.Activation.Providers.StandardProvider.Type">
|
453
|
+
<summary>
|
454
|
+
Gets the type (or prototype) of instances the provider creates.
|
455
|
+
</summary>
|
456
|
+
</member>
|
457
|
+
<member name="P:Ninject.Activation.Providers.StandardProvider.Planner">
|
458
|
+
<summary>
|
459
|
+
Gets or sets the planner component.
|
460
|
+
</summary>
|
461
|
+
</member>
|
462
|
+
<member name="P:Ninject.Activation.Providers.StandardProvider.Selector">
|
463
|
+
<summary>
|
464
|
+
Gets or sets the selector component.
|
465
|
+
</summary>
|
466
|
+
</member>
|
467
|
+
<member name="T:Ninject.Activation.Strategies.ActivationStrategy">
|
468
|
+
<summary>
|
469
|
+
Contributes to a <see cref="T:Ninject.Activation.IPipeline"/>, and is called during the activation
|
470
|
+
and deactivation of an instance.
|
471
|
+
</summary>
|
472
|
+
</member>
|
473
|
+
<member name="T:Ninject.Activation.Strategies.IActivationStrategy">
|
474
|
+
<summary>
|
475
|
+
Contributes to a <see cref="T:Ninject.Activation.IPipeline"/>, and is called during the activation
|
476
|
+
and deactivation of an instance.
|
477
|
+
</summary>
|
478
|
+
</member>
|
479
|
+
<member name="M:Ninject.Activation.Strategies.IActivationStrategy.Activate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
|
480
|
+
<summary>
|
481
|
+
Contributes to the activation of the instance in the specified context.
|
482
|
+
</summary>
|
483
|
+
<param name="context">The context.</param>
|
484
|
+
<param name="reference">A reference to the instance being activated.</param>
|
485
|
+
</member>
|
486
|
+
<member name="M:Ninject.Activation.Strategies.IActivationStrategy.Deactivate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
|
487
|
+
<summary>
|
488
|
+
Contributes to the deactivation of the instance in the specified context.
|
489
|
+
</summary>
|
490
|
+
<param name="context">The context.</param>
|
491
|
+
<param name="reference">A reference to the instance being deactivated.</param>
|
492
|
+
</member>
|
493
|
+
<member name="M:Ninject.Activation.Strategies.ActivationStrategy.Activate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
|
494
|
+
<summary>
|
495
|
+
Contributes to the activation of the instance in the specified context.
|
496
|
+
</summary>
|
497
|
+
<param name="context">The context.</param>
|
498
|
+
<param name="reference">A reference to the instance being activated.</param>
|
499
|
+
</member>
|
500
|
+
<member name="M:Ninject.Activation.Strategies.ActivationStrategy.Deactivate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
|
501
|
+
<summary>
|
502
|
+
Contributes to the deactivation of the instance in the specified context.
|
503
|
+
</summary>
|
504
|
+
<param name="context">The context.</param>
|
505
|
+
<param name="reference">A reference to the instance being deactivated.</param>
|
506
|
+
</member>
|
507
|
+
<member name="T:Ninject.Activation.Strategies.BindingActionStrategy">
|
508
|
+
<summary>
|
509
|
+
Executes actions defined on the binding during activation and deactivation.
|
510
|
+
</summary>
|
511
|
+
</member>
|
512
|
+
<member name="M:Ninject.Activation.Strategies.BindingActionStrategy.Activate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
|
513
|
+
<summary>
|
514
|
+
Calls the activation actions defined on the binding.
|
515
|
+
</summary>
|
516
|
+
<param name="context">The context.</param>
|
517
|
+
<param name="reference">A reference to the instance being activated.</param>
|
518
|
+
</member>
|
519
|
+
<member name="M:Ninject.Activation.Strategies.BindingActionStrategy.Deactivate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
|
520
|
+
<summary>
|
521
|
+
Calls the deactivation actions defined on the binding.
|
522
|
+
</summary>
|
523
|
+
<param name="context">The context.</param>
|
524
|
+
<param name="reference">A reference to the instance being deactivated.</param>
|
525
|
+
</member>
|
526
|
+
<member name="T:Ninject.Activation.Strategies.DisposableStrategy">
|
527
|
+
<summary>
|
528
|
+
During deactivation, disposes instances that implement <see cref="T:System.IDisposable"/>.
|
529
|
+
</summary>
|
530
|
+
</member>
|
531
|
+
<member name="M:Ninject.Activation.Strategies.DisposableStrategy.Deactivate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
|
532
|
+
<summary>
|
533
|
+
Disposes the specified instance.
|
534
|
+
</summary>
|
535
|
+
<param name="context">The context.</param>
|
536
|
+
<param name="reference">A reference to the instance being deactivated.</param>
|
537
|
+
</member>
|
538
|
+
<member name="T:Ninject.Activation.Strategies.InitializableStrategy">
|
539
|
+
<summary>
|
540
|
+
During activation, initializes instances that implement <see cref="T:Ninject.IInitializable"/>.
|
541
|
+
</summary>
|
542
|
+
</member>
|
543
|
+
<member name="M:Ninject.Activation.Strategies.InitializableStrategy.Activate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
|
544
|
+
<summary>
|
545
|
+
Initializes the specified instance.
|
546
|
+
</summary>
|
547
|
+
<param name="context">The context.</param>
|
548
|
+
<param name="reference">A reference to the instance being activated.</param>
|
549
|
+
</member>
|
550
|
+
<member name="T:Ninject.Activation.Strategies.MethodInjectionStrategy">
|
551
|
+
<summary>
|
552
|
+
Injects methods on an instance during activation.
|
553
|
+
</summary>
|
554
|
+
</member>
|
555
|
+
<member name="M:Ninject.Activation.Strategies.MethodInjectionStrategy.Activate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
|
556
|
+
<summary>
|
557
|
+
Injects values into the properties as described by <see cref="T:Ninject.Planning.Directives.MethodInjectionDirective"/>s
|
558
|
+
contained in the plan.
|
559
|
+
</summary>
|
560
|
+
<param name="context">The context.</param>
|
561
|
+
<param name="reference">A reference to the instance being activated.</param>
|
562
|
+
</member>
|
563
|
+
<member name="T:Ninject.Activation.Strategies.PropertyInjectionStrategy">
|
564
|
+
<summary>
|
565
|
+
Injects properties on an instance during activation.
|
566
|
+
</summary>
|
567
|
+
</member>
|
568
|
+
<member name="M:Ninject.Activation.Strategies.PropertyInjectionStrategy.#ctor(Ninject.Injection.IInjectorFactory)">
|
569
|
+
<summary>
|
570
|
+
Initializes a new instance of the <see cref="T:Ninject.Activation.Strategies.PropertyInjectionStrategy"/> class.
|
571
|
+
</summary>
|
572
|
+
<param name="injectorFactory">The injector factory component.</param>
|
573
|
+
</member>
|
574
|
+
<member name="M:Ninject.Activation.Strategies.PropertyInjectionStrategy.Activate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
|
575
|
+
<summary>
|
576
|
+
Injects values into the properties as described by <see cref="T:Ninject.Planning.Directives.PropertyInjectionDirective"/>s
|
577
|
+
contained in the plan.
|
578
|
+
</summary>
|
579
|
+
<param name="context">The context.</param>
|
580
|
+
<param name="reference">A reference to the instance being activated.</param>
|
581
|
+
</member>
|
582
|
+
<member name="M:Ninject.Activation.Strategies.PropertyInjectionStrategy.AssignProperyOverrides(Ninject.Activation.IContext,Ninject.Activation.InstanceReference,System.Collections.Generic.IEnumerable{Ninject.Parameters.IParameter})">
|
583
|
+
<summary>
|
584
|
+
Applies user supplied override values to instance properties.
|
585
|
+
</summary>
|
586
|
+
<param name="context">The context.</param>
|
587
|
+
<param name="reference">A reference to the instance being activated.</param>
|
588
|
+
<param name="propertyValues">The parameter ovverride value accessors.</param>
|
589
|
+
</member>
|
590
|
+
<member name="M:Ninject.Activation.Strategies.PropertyInjectionStrategy.GetValue(Ninject.Activation.IContext,Ninject.Planning.Targets.ITarget)">
|
591
|
+
<summary>
|
592
|
+
Gets the value to inject into the specified target.
|
593
|
+
</summary>
|
594
|
+
<param name="context">The context.</param>
|
595
|
+
<param name="target">The target.</param>
|
596
|
+
<returns>The value to inject into the specified target.</returns>
|
597
|
+
</member>
|
598
|
+
<member name="P:Ninject.Activation.Strategies.PropertyInjectionStrategy.InjectorFactory">
|
599
|
+
<summary>
|
600
|
+
Gets the injector factory component.
|
601
|
+
</summary>
|
602
|
+
</member>
|
603
|
+
<member name="T:Ninject.Activation.Strategies.StartableStrategy">
|
604
|
+
<summary>
|
605
|
+
Starts instances that implement <see cref="T:Ninject.IStartable"/> during activation,
|
606
|
+
and stops them during deactivation.
|
607
|
+
</summary>
|
608
|
+
</member>
|
609
|
+
<member name="M:Ninject.Activation.Strategies.StartableStrategy.Activate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
|
610
|
+
<summary>
|
611
|
+
Starts the specified instance.
|
612
|
+
</summary>
|
613
|
+
<param name="context">The context.</param>
|
614
|
+
<param name="reference">A reference to the instance being activated.</param>
|
615
|
+
</member>
|
616
|
+
<member name="M:Ninject.Activation.Strategies.StartableStrategy.Deactivate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
|
617
|
+
<summary>
|
618
|
+
Stops the specified instance.
|
619
|
+
</summary>
|
620
|
+
<param name="context">The context.</param>
|
621
|
+
<param name="reference">A reference to the instance being deactivated.</param>
|
622
|
+
</member>
|
623
|
+
<member name="T:Ninject.Activation.Context">
|
624
|
+
<summary>
|
625
|
+
Contains information about the activation of a single instance.
|
626
|
+
</summary>
|
627
|
+
</member>
|
628
|
+
<member name="T:Ninject.Activation.IContext">
|
629
|
+
<summary>
|
630
|
+
Contains information about the activation of a single instance.
|
631
|
+
</summary>
|
632
|
+
</member>
|
633
|
+
<member name="M:Ninject.Activation.IContext.GetProvider">
|
634
|
+
<summary>
|
635
|
+
Gets the provider that should be used to create the instance for this context.
|
636
|
+
</summary>
|
637
|
+
<returns>The provider that should be used.</returns>
|
638
|
+
</member>
|
639
|
+
<member name="M:Ninject.Activation.IContext.GetScope">
|
640
|
+
<summary>
|
641
|
+
Gets the scope for the context that "owns" the instance activated therein.
|
642
|
+
</summary>
|
643
|
+
<returns>The object that acts as the scope.</returns>
|
644
|
+
</member>
|
645
|
+
<member name="M:Ninject.Activation.IContext.Resolve">
|
646
|
+
<summary>
|
647
|
+
Resolves this instance for this context.
|
648
|
+
</summary>
|
649
|
+
<returns>The resolved instance.</returns>
|
650
|
+
</member>
|
651
|
+
<member name="P:Ninject.Activation.IContext.Kernel">
|
652
|
+
<summary>
|
653
|
+
Gets the kernel that is driving the activation.
|
654
|
+
</summary>
|
655
|
+
</member>
|
656
|
+
<member name="P:Ninject.Activation.IContext.Request">
|
657
|
+
<summary>
|
658
|
+
Gets the request.
|
659
|
+
</summary>
|
660
|
+
</member>
|
661
|
+
<member name="P:Ninject.Activation.IContext.Binding">
|
662
|
+
<summary>
|
663
|
+
Gets the binding.
|
664
|
+
</summary>
|
665
|
+
</member>
|
666
|
+
<member name="P:Ninject.Activation.IContext.Plan">
|
667
|
+
<summary>
|
668
|
+
Gets or sets the activation plan.
|
669
|
+
</summary>
|
670
|
+
</member>
|
671
|
+
<member name="P:Ninject.Activation.IContext.Parameters">
|
672
|
+
<summary>
|
673
|
+
Gets the parameters that were passed to manipulate the activation process.
|
674
|
+
</summary>
|
675
|
+
</member>
|
676
|
+
<member name="P:Ninject.Activation.IContext.GenericArguments">
|
677
|
+
<summary>
|
678
|
+
Gets the generic arguments for the request, if any.
|
679
|
+
</summary>
|
680
|
+
</member>
|
681
|
+
<member name="P:Ninject.Activation.IContext.HasInferredGenericArguments">
|
682
|
+
<summary>
|
683
|
+
Gets a value indicating whether the request involves inferred generic arguments.
|
684
|
+
</summary>
|
685
|
+
</member>
|
686
|
+
<member name="M:Ninject.Activation.Context.#ctor(Ninject.IKernel,Ninject.Activation.IRequest,Ninject.Planning.Bindings.IBinding,Ninject.Activation.Caching.ICache,Ninject.Planning.IPlanner,Ninject.Activation.IPipeline)">
|
687
|
+
<summary>
|
688
|
+
Initializes a new instance of the <see cref="T:Ninject.Activation.Context"/> class.
|
689
|
+
</summary>
|
690
|
+
<param name="kernel">The kernel managing the resolution.</param>
|
691
|
+
<param name="request">The context's request.</param>
|
692
|
+
<param name="binding">The context's binding.</param>
|
693
|
+
<param name="cache">The cache component.</param>
|
694
|
+
<param name="planner">The planner component.</param>
|
695
|
+
<param name="pipeline">The pipeline component.</param>
|
696
|
+
</member>
|
697
|
+
<member name="M:Ninject.Activation.Context.GetScope">
|
698
|
+
<summary>
|
699
|
+
Gets the scope for the context that "owns" the instance activated therein.
|
700
|
+
</summary>
|
701
|
+
<returns>The object that acts as the scope.</returns>
|
702
|
+
</member>
|
703
|
+
<member name="M:Ninject.Activation.Context.GetProvider">
|
704
|
+
<summary>
|
705
|
+
Gets the provider that should be used to create the instance for this context.
|
706
|
+
</summary>
|
707
|
+
<returns>The provider that should be used.</returns>
|
708
|
+
</member>
|
709
|
+
<member name="M:Ninject.Activation.Context.Resolve">
|
710
|
+
<summary>
|
711
|
+
Resolves the instance associated with this hook.
|
712
|
+
</summary>
|
713
|
+
<returns>The resolved instance.</returns>
|
714
|
+
</member>
|
715
|
+
<member name="P:Ninject.Activation.Context.Kernel">
|
716
|
+
<summary>
|
717
|
+
Gets the kernel that is driving the activation.
|
718
|
+
</summary>
|
719
|
+
</member>
|
720
|
+
<member name="P:Ninject.Activation.Context.Request">
|
721
|
+
<summary>
|
722
|
+
Gets the request.
|
723
|
+
</summary>
|
724
|
+
</member>
|
725
|
+
<member name="P:Ninject.Activation.Context.Binding">
|
726
|
+
<summary>
|
727
|
+
Gets the binding.
|
728
|
+
</summary>
|
729
|
+
</member>
|
730
|
+
<member name="P:Ninject.Activation.Context.Plan">
|
731
|
+
<summary>
|
732
|
+
Gets or sets the activation plan.
|
733
|
+
</summary>
|
734
|
+
</member>
|
735
|
+
<member name="P:Ninject.Activation.Context.Parameters">
|
736
|
+
<summary>
|
737
|
+
Gets the parameters that were passed to manipulate the activation process.
|
738
|
+
</summary>
|
739
|
+
</member>
|
740
|
+
<member name="P:Ninject.Activation.Context.GenericArguments">
|
741
|
+
<summary>
|
742
|
+
Gets the generic arguments for the request, if any.
|
743
|
+
</summary>
|
744
|
+
</member>
|
745
|
+
<member name="P:Ninject.Activation.Context.HasInferredGenericArguments">
|
746
|
+
<summary>
|
747
|
+
Gets a value indicating whether the request involves inferred generic arguments.
|
748
|
+
</summary>
|
749
|
+
</member>
|
750
|
+
<member name="P:Ninject.Activation.Context.Cache">
|
751
|
+
<summary>
|
752
|
+
Gets or sets the cache component.
|
753
|
+
</summary>
|
754
|
+
</member>
|
755
|
+
<member name="P:Ninject.Activation.Context.Planner">
|
756
|
+
<summary>
|
757
|
+
Gets or sets the planner component.
|
758
|
+
</summary>
|
759
|
+
</member>
|
760
|
+
<member name="P:Ninject.Activation.Context.Pipeline">
|
761
|
+
<summary>
|
762
|
+
Gets or sets the pipeline component.
|
763
|
+
</summary>
|
764
|
+
</member>
|
765
|
+
<member name="T:Ninject.Activation.InstanceReference">
|
766
|
+
<summary>
|
767
|
+
Holds an instance during activation or after it has been cached.
|
768
|
+
</summary>
|
769
|
+
</member>
|
770
|
+
<member name="M:Ninject.Activation.InstanceReference.Is``1">
|
771
|
+
<summary>
|
772
|
+
Returns a value indicating whether the instance is of the specified type.
|
773
|
+
</summary>
|
774
|
+
<typeparam name="T">The type in question.</typeparam>
|
775
|
+
<returns><see langword="True"/> if the instance is of the specified type, otherwise <see langword="false"/>.</returns>
|
776
|
+
</member>
|
777
|
+
<member name="M:Ninject.Activation.InstanceReference.As``1">
|
778
|
+
<summary>
|
779
|
+
Returns the instance as the specified type.
|
780
|
+
</summary>
|
781
|
+
<typeparam name="T">The requested type.</typeparam>
|
782
|
+
<returns>The instance.</returns>
|
783
|
+
</member>
|
784
|
+
<member name="M:Ninject.Activation.InstanceReference.IfInstanceIs``1(System.Action{``0})">
|
785
|
+
<summary>
|
786
|
+
Executes the specified action if the instance if of the specified type.
|
787
|
+
</summary>
|
788
|
+
<typeparam name="T">The type in question.</typeparam>
|
789
|
+
<param name="action">The action to execute.</param>
|
790
|
+
</member>
|
791
|
+
<member name="P:Ninject.Activation.InstanceReference.Instance">
|
792
|
+
<summary>
|
793
|
+
Gets or sets the instance.
|
794
|
+
</summary>
|
795
|
+
</member>
|
796
|
+
<member name="T:Ninject.Activation.IPipeline">
|
797
|
+
<summary>
|
798
|
+
Drives the activation (injection, etc.) of an instance.
|
799
|
+
</summary>
|
800
|
+
</member>
|
801
|
+
<member name="M:Ninject.Activation.IPipeline.Activate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
|
802
|
+
<summary>
|
803
|
+
Activates the instance in the specified context.
|
804
|
+
</summary>
|
805
|
+
<param name="context">The context.</param>
|
806
|
+
<param name="reference">The instance reference.</param>
|
807
|
+
</member>
|
808
|
+
<member name="M:Ninject.Activation.IPipeline.Deactivate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
|
809
|
+
<summary>
|
810
|
+
Deactivates the instance in the specified context.
|
811
|
+
</summary>
|
812
|
+
<param name="context">The context.</param>
|
813
|
+
<param name="reference">The instance reference.</param>
|
814
|
+
</member>
|
815
|
+
<member name="P:Ninject.Activation.IPipeline.Strategies">
|
816
|
+
<summary>
|
817
|
+
Gets the strategies that contribute to the activation and deactivation processes.
|
818
|
+
</summary>
|
819
|
+
</member>
|
820
|
+
<member name="T:Ninject.Activation.IRequest">
|
821
|
+
<summary>
|
822
|
+
Describes the request for a service resolution.
|
823
|
+
</summary>
|
824
|
+
</member>
|
825
|
+
<member name="M:Ninject.Activation.IRequest.Matches(Ninject.Planning.Bindings.IBinding)">
|
826
|
+
<summary>
|
827
|
+
Determines whether the specified binding satisfies the constraint defined on this request.
|
828
|
+
</summary>
|
829
|
+
<param name="binding">The binding.</param>
|
830
|
+
<returns><c>True</c> if the binding satisfies the constraint; otherwise <c>false</c>.</returns>
|
831
|
+
</member>
|
832
|
+
<member name="M:Ninject.Activation.IRequest.GetScope">
|
833
|
+
<summary>
|
834
|
+
Gets the scope if one was specified in the request.
|
835
|
+
</summary>
|
836
|
+
<returns>The object that acts as the scope.</returns>
|
837
|
+
</member>
|
838
|
+
<member name="M:Ninject.Activation.IRequest.CreateChild(System.Type,Ninject.Activation.IContext,Ninject.Planning.Targets.ITarget)">
|
839
|
+
<summary>
|
840
|
+
Creates a child request.
|
841
|
+
</summary>
|
842
|
+
<param name="service">The service that is being requested.</param>
|
843
|
+
<param name="parentContext">The context in which the request was made.</param>
|
844
|
+
<param name="target">The target that will receive the injection.</param>
|
845
|
+
<returns>The child request.</returns>
|
846
|
+
</member>
|
847
|
+
<member name="P:Ninject.Activation.IRequest.Service">
|
848
|
+
<summary>
|
849
|
+
Gets the service that was requested.
|
850
|
+
</summary>
|
851
|
+
</member>
|
852
|
+
<member name="P:Ninject.Activation.IRequest.ParentRequest">
|
853
|
+
<summary>
|
854
|
+
Gets the parent request.
|
855
|
+
</summary>
|
856
|
+
</member>
|
857
|
+
<member name="P:Ninject.Activation.IRequest.ParentContext">
|
858
|
+
<summary>
|
859
|
+
Gets the parent context.
|
860
|
+
</summary>
|
861
|
+
</member>
|
862
|
+
<member name="P:Ninject.Activation.IRequest.Target">
|
863
|
+
<summary>
|
864
|
+
Gets the target that will receive the injection, if any.
|
865
|
+
</summary>
|
866
|
+
</member>
|
867
|
+
<member name="P:Ninject.Activation.IRequest.Constraint">
|
868
|
+
<summary>
|
869
|
+
Gets the constraint that will be applied to filter the bindings used for the request.
|
870
|
+
</summary>
|
871
|
+
</member>
|
872
|
+
<member name="P:Ninject.Activation.IRequest.Parameters">
|
873
|
+
<summary>
|
874
|
+
Gets the parameters that affect the resolution.
|
875
|
+
</summary>
|
876
|
+
</member>
|
877
|
+
<member name="P:Ninject.Activation.IRequest.ActiveBindings">
|
878
|
+
<summary>
|
879
|
+
Gets the stack of bindings which have been activated by either this request or its ancestors.
|
880
|
+
</summary>
|
881
|
+
</member>
|
882
|
+
<member name="P:Ninject.Activation.IRequest.Depth">
|
883
|
+
<summary>
|
884
|
+
Gets the recursive depth at which this request occurs.
|
885
|
+
</summary>
|
886
|
+
</member>
|
887
|
+
<member name="P:Ninject.Activation.IRequest.IsOptional">
|
888
|
+
<summary>
|
889
|
+
Gets or sets value indicating whether the request is optional.
|
890
|
+
</summary>
|
891
|
+
</member>
|
892
|
+
<member name="P:Ninject.Activation.IRequest.IsUnique">
|
893
|
+
<summary>
|
894
|
+
Gets or sets value indicating whether the request should return a unique result.
|
895
|
+
</summary>
|
896
|
+
</member>
|
897
|
+
<member name="T:Ninject.Activation.Pipeline">
|
898
|
+
<summary>
|
899
|
+
Drives the activation (injection, etc.) of an instance.
|
900
|
+
</summary>
|
901
|
+
</member>
|
902
|
+
<member name="M:Ninject.Activation.Pipeline.#ctor(System.Collections.Generic.IEnumerable{Ninject.Activation.Strategies.IActivationStrategy})">
|
903
|
+
<summary>
|
904
|
+
Initializes a new instance of the <see cref="T:Ninject.Activation.Pipeline"/> class.
|
905
|
+
</summary>
|
906
|
+
<param name="strategies">The strategies to execute during activation and deactivation.</param>
|
907
|
+
</member>
|
908
|
+
<member name="M:Ninject.Activation.Pipeline.Activate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
|
909
|
+
<summary>
|
910
|
+
Activates the instance in the specified context.
|
911
|
+
</summary>
|
912
|
+
<param name="context">The context.</param>
|
913
|
+
<param name="reference">The instance reference.</param>
|
914
|
+
</member>
|
915
|
+
<member name="M:Ninject.Activation.Pipeline.Deactivate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
|
916
|
+
<summary>
|
917
|
+
Deactivates the instance in the specified context.
|
918
|
+
</summary>
|
919
|
+
<param name="context">The context.</param>
|
920
|
+
<param name="reference">The instance reference.</param>
|
921
|
+
</member>
|
922
|
+
<member name="P:Ninject.Activation.Pipeline.Strategies">
|
923
|
+
<summary>
|
924
|
+
Gets the strategies that contribute to the activation and deactivation processes.
|
925
|
+
</summary>
|
926
|
+
</member>
|
927
|
+
<member name="T:Ninject.Activation.Request">
|
928
|
+
<summary>
|
929
|
+
Describes the request for a service resolution.
|
930
|
+
</summary>
|
931
|
+
</member>
|
932
|
+
<member name="M:Ninject.Activation.Request.#ctor(System.Type,System.Func{Ninject.Planning.Bindings.IBindingMetadata,System.Boolean},System.Collections.Generic.IEnumerable{Ninject.Parameters.IParameter},System.Func{System.Object},System.Boolean,System.Boolean)">
|
933
|
+
<summary>
|
934
|
+
Initializes a new instance of the <see cref="T:Ninject.Activation.Request"/> class.
|
935
|
+
</summary>
|
936
|
+
<param name="service">The service that was requested.</param>
|
937
|
+
<param name="constraint">The constraint that will be applied to filter the bindings used for the request.</param>
|
938
|
+
<param name="parameters">The parameters that affect the resolution.</param>
|
939
|
+
<param name="scopeCallback">The scope callback, if an external scope was specified.</param>
|
940
|
+
<param name="isOptional"><c>True</c> if the request is optional; otherwise, <c>false</c>.</param>
|
941
|
+
<param name="isUnique"><c>True</c> if the request should return a unique result; otherwise, <c>false</c>.</param>
|
942
|
+
</member>
|
943
|
+
<member name="M:Ninject.Activation.Request.#ctor(Ninject.Activation.IContext,System.Type,Ninject.Planning.Targets.ITarget,System.Func{System.Object})">
|
944
|
+
<summary>
|
945
|
+
Initializes a new instance of the <see cref="T:Ninject.Activation.Request"/> class.
|
946
|
+
</summary>
|
947
|
+
<param name="parentContext">The parent context.</param>
|
948
|
+
<param name="service">The service that was requested.</param>
|
949
|
+
<param name="target">The target that will receive the injection.</param>
|
950
|
+
<param name="scopeCallback">The scope callback, if an external scope was specified.</param>
|
951
|
+
</member>
|
952
|
+
<member name="M:Ninject.Activation.Request.Matches(Ninject.Planning.Bindings.IBinding)">
|
953
|
+
<summary>
|
954
|
+
Determines whether the specified binding satisfies the constraints defined on this request.
|
955
|
+
</summary>
|
956
|
+
<param name="binding">The binding.</param>
|
957
|
+
<returns><c>True</c> if the binding satisfies the constraints; otherwise <c>false</c>.</returns>
|
958
|
+
</member>
|
959
|
+
<member name="M:Ninject.Activation.Request.GetScope">
|
960
|
+
<summary>
|
961
|
+
Gets the scope if one was specified in the request.
|
962
|
+
</summary>
|
963
|
+
<returns>The object that acts as the scope.</returns>
|
964
|
+
</member>
|
965
|
+
<member name="M:Ninject.Activation.Request.CreateChild(System.Type,Ninject.Activation.IContext,Ninject.Planning.Targets.ITarget)">
|
966
|
+
<summary>
|
967
|
+
Creates a child request.
|
968
|
+
</summary>
|
969
|
+
<param name="service">The service that is being requested.</param>
|
970
|
+
<param name="parentContext">The context in which the request was made.</param>
|
971
|
+
<param name="target">The target that will receive the injection.</param>
|
972
|
+
<returns>The child request.</returns>
|
973
|
+
</member>
|
974
|
+
<member name="P:Ninject.Activation.Request.Service">
|
975
|
+
<summary>
|
976
|
+
Gets the service that was requested.
|
977
|
+
</summary>
|
978
|
+
</member>
|
979
|
+
<member name="P:Ninject.Activation.Request.ParentRequest">
|
980
|
+
<summary>
|
981
|
+
Gets the parent request.
|
982
|
+
</summary>
|
983
|
+
</member>
|
984
|
+
<member name="P:Ninject.Activation.Request.ParentContext">
|
985
|
+
<summary>
|
986
|
+
Gets the parent context.
|
987
|
+
</summary>
|
988
|
+
</member>
|
989
|
+
<member name="P:Ninject.Activation.Request.Target">
|
990
|
+
<summary>
|
991
|
+
Gets the target that will receive the injection, if any.
|
992
|
+
</summary>
|
993
|
+
</member>
|
994
|
+
<member name="P:Ninject.Activation.Request.Constraint">
|
995
|
+
<summary>
|
996
|
+
Gets the constraint that will be applied to filter the bindings used for the request.
|
997
|
+
</summary>
|
998
|
+
</member>
|
999
|
+
<member name="P:Ninject.Activation.Request.Parameters">
|
1000
|
+
<summary>
|
1001
|
+
Gets the parameters that affect the resolution.
|
1002
|
+
</summary>
|
1003
|
+
</member>
|
1004
|
+
<member name="P:Ninject.Activation.Request.ActiveBindings">
|
1005
|
+
<summary>
|
1006
|
+
Gets the stack of bindings which have been activated by either this request or its ancestors.
|
1007
|
+
</summary>
|
1008
|
+
</member>
|
1009
|
+
<member name="P:Ninject.Activation.Request.Depth">
|
1010
|
+
<summary>
|
1011
|
+
Gets the recursive depth at which this request occurs.
|
1012
|
+
</summary>
|
1013
|
+
</member>
|
1014
|
+
<member name="P:Ninject.Activation.Request.IsOptional">
|
1015
|
+
<summary>
|
1016
|
+
Gets or sets value indicating whether the request is optional.
|
1017
|
+
</summary>
|
1018
|
+
</member>
|
1019
|
+
<member name="P:Ninject.Activation.Request.IsUnique">
|
1020
|
+
<summary>
|
1021
|
+
Gets or sets value indicating whether the request is for a single service.
|
1022
|
+
</summary>
|
1023
|
+
</member>
|
1024
|
+
<member name="P:Ninject.Activation.Request.ScopeCallback">
|
1025
|
+
<summary>
|
1026
|
+
Gets the callback that resolves the scope for the request, if an external scope was provided.
|
1027
|
+
</summary>
|
1028
|
+
</member>
|
1029
|
+
<member name="T:Ninject.ConstraintAttribute">
|
1030
|
+
<summary>
|
1031
|
+
Defines a constraint on the decorated member.
|
1032
|
+
</summary>
|
1033
|
+
</member>
|
1034
|
+
<member name="M:Ninject.ConstraintAttribute.Matches(Ninject.Planning.Bindings.IBindingMetadata)">
|
1035
|
+
<summary>
|
1036
|
+
Determines whether the specified binding metadata matches the constraint.
|
1037
|
+
</summary>
|
1038
|
+
<param name="metadata">The metadata in question.</param>
|
1039
|
+
<returns><c>True</c> if the metadata matches; otherwise <c>false</c>.</returns>
|
1040
|
+
</member>
|
1041
|
+
<member name="T:Ninject.InjectAttribute">
|
1042
|
+
<summary>
|
1043
|
+
Indicates that the decorated member should be injected.
|
1044
|
+
</summary>
|
1045
|
+
</member>
|
1046
|
+
<member name="T:Ninject.NamedAttribute">
|
1047
|
+
<summary>
|
1048
|
+
Indicates that the decorated member should only be injected using binding(s) registered
|
1049
|
+
with the specified name.
|
1050
|
+
</summary>
|
1051
|
+
</member>
|
1052
|
+
<member name="M:Ninject.NamedAttribute.#ctor(System.String)">
|
1053
|
+
<summary>
|
1054
|
+
Initializes a new instance of the <see cref="T:Ninject.NamedAttribute"/> class.
|
1055
|
+
</summary>
|
1056
|
+
<param name="name">The name of the binding(s) to use.</param>
|
1057
|
+
</member>
|
1058
|
+
<member name="M:Ninject.NamedAttribute.Matches(Ninject.Planning.Bindings.IBindingMetadata)">
|
1059
|
+
<summary>
|
1060
|
+
Determines whether the specified binding metadata matches the constraint.
|
1061
|
+
</summary>
|
1062
|
+
<param name="metadata">The metadata in question.</param>
|
1063
|
+
<returns><c>True</c> if the metadata matches; otherwise <c>false</c>.</returns>
|
1064
|
+
</member>
|
1065
|
+
<member name="P:Ninject.NamedAttribute.Name">
|
1066
|
+
<summary>
|
1067
|
+
Gets the binding name.
|
1068
|
+
</summary>
|
1069
|
+
</member>
|
1070
|
+
<member name="T:Ninject.OptionalAttribute">
|
1071
|
+
<summary>
|
1072
|
+
Indicates that the decorated member represents an optional dependency.
|
1073
|
+
</summary>
|
1074
|
+
</member>
|
1075
|
+
<member name="T:Ninject.Components.ComponentContainer">
|
1076
|
+
<summary>
|
1077
|
+
An internal container that manages and resolves components that contribute to Ninject.
|
1078
|
+
</summary>
|
1079
|
+
</member>
|
1080
|
+
<member name="T:Ninject.Components.IComponentContainer">
|
1081
|
+
<summary>
|
1082
|
+
An internal container that manages and resolves components that contribute to Ninject.
|
1083
|
+
</summary>
|
1084
|
+
</member>
|
1085
|
+
<member name="M:Ninject.Components.IComponentContainer.Add``2">
|
1086
|
+
<summary>
|
1087
|
+
Registers a component in the container.
|
1088
|
+
</summary>
|
1089
|
+
<typeparam name="TComponent">The component type.</typeparam>
|
1090
|
+
<typeparam name="TImplementation">The component's implementation type.</typeparam>
|
1091
|
+
</member>
|
1092
|
+
<member name="M:Ninject.Components.IComponentContainer.RemoveAll``1">
|
1093
|
+
<summary>
|
1094
|
+
Removes all registrations for the specified component.
|
1095
|
+
</summary>
|
1096
|
+
<typeparam name="T">The component type.</typeparam>
|
1097
|
+
</member>
|
1098
|
+
<member name="M:Ninject.Components.IComponentContainer.RemoveAll(System.Type)">
|
1099
|
+
<summary>
|
1100
|
+
Removes all registrations for the specified component.
|
1101
|
+
</summary>
|
1102
|
+
<param name="component">The component's type.</param>
|
1103
|
+
</member>
|
1104
|
+
<member name="M:Ninject.Components.IComponentContainer.Get``1">
|
1105
|
+
<summary>
|
1106
|
+
Gets one instance of the specified component.
|
1107
|
+
</summary>
|
1108
|
+
<typeparam name="T">The component type.</typeparam>
|
1109
|
+
<returns>The instance of the component.</returns>
|
1110
|
+
</member>
|
1111
|
+
<member name="M:Ninject.Components.IComponentContainer.GetAll``1">
|
1112
|
+
<summary>
|
1113
|
+
Gets all available instances of the specified component.
|
1114
|
+
</summary>
|
1115
|
+
<typeparam name="T">The component type.</typeparam>
|
1116
|
+
<returns>A series of instances of the specified component.</returns>
|
1117
|
+
</member>
|
1118
|
+
<member name="M:Ninject.Components.IComponentContainer.Get(System.Type)">
|
1119
|
+
<summary>
|
1120
|
+
Gets one instance of the specified component.
|
1121
|
+
</summary>
|
1122
|
+
<param name="component">The component type.</param>
|
1123
|
+
<returns>The instance of the component.</returns>
|
1124
|
+
</member>
|
1125
|
+
<member name="M:Ninject.Components.IComponentContainer.GetAll(System.Type)">
|
1126
|
+
<summary>
|
1127
|
+
Gets all available instances of the specified component.
|
1128
|
+
</summary>
|
1129
|
+
<param name="component">The component type.</param>
|
1130
|
+
<returns>A series of instances of the specified component.</returns>
|
1131
|
+
</member>
|
1132
|
+
<member name="P:Ninject.Components.IComponentContainer.Kernel">
|
1133
|
+
<summary>
|
1134
|
+
Gets or sets the kernel that owns the component container.
|
1135
|
+
</summary>
|
1136
|
+
</member>
|
1137
|
+
<member name="M:Ninject.Components.ComponentContainer.Dispose(System.Boolean)">
|
1138
|
+
<summary>
|
1139
|
+
Releases resources held by the object.
|
1140
|
+
</summary>
|
1141
|
+
</member>
|
1142
|
+
<member name="M:Ninject.Components.ComponentContainer.Add``2">
|
1143
|
+
<summary>
|
1144
|
+
Registers a component in the container.
|
1145
|
+
</summary>
|
1146
|
+
<typeparam name="TComponent">The component type.</typeparam>
|
1147
|
+
<typeparam name="TImplementation">The component's implementation type.</typeparam>
|
1148
|
+
</member>
|
1149
|
+
<member name="M:Ninject.Components.ComponentContainer.RemoveAll``1">
|
1150
|
+
<summary>
|
1151
|
+
Removes all registrations for the specified component.
|
1152
|
+
</summary>
|
1153
|
+
<typeparam name="T">The component type.</typeparam>
|
1154
|
+
</member>
|
1155
|
+
<member name="M:Ninject.Components.ComponentContainer.RemoveAll(System.Type)">
|
1156
|
+
<summary>
|
1157
|
+
Removes all registrations for the specified component.
|
1158
|
+
</summary>
|
1159
|
+
<param name="component">The component type.</param>
|
1160
|
+
</member>
|
1161
|
+
<member name="M:Ninject.Components.ComponentContainer.Get``1">
|
1162
|
+
<summary>
|
1163
|
+
Gets one instance of the specified component.
|
1164
|
+
</summary>
|
1165
|
+
<typeparam name="T">The component type.</typeparam>
|
1166
|
+
<returns>The instance of the component.</returns>
|
1167
|
+
</member>
|
1168
|
+
<member name="M:Ninject.Components.ComponentContainer.GetAll``1">
|
1169
|
+
<summary>
|
1170
|
+
Gets all available instances of the specified component.
|
1171
|
+
</summary>
|
1172
|
+
<typeparam name="T">The component type.</typeparam>
|
1173
|
+
<returns>A series of instances of the specified component.</returns>
|
1174
|
+
</member>
|
1175
|
+
<member name="M:Ninject.Components.ComponentContainer.Get(System.Type)">
|
1176
|
+
<summary>
|
1177
|
+
Gets one instance of the specified component.
|
1178
|
+
</summary>
|
1179
|
+
<param name="component">The component type.</param>
|
1180
|
+
<returns>The instance of the component.</returns>
|
1181
|
+
</member>
|
1182
|
+
<member name="M:Ninject.Components.ComponentContainer.GetAll(System.Type)">
|
1183
|
+
<summary>
|
1184
|
+
Gets all available instances of the specified component.
|
1185
|
+
</summary>
|
1186
|
+
<param name="component">The component type.</param>
|
1187
|
+
<returns>A series of instances of the specified component.</returns>
|
1188
|
+
</member>
|
1189
|
+
<member name="P:Ninject.Components.ComponentContainer.Kernel">
|
1190
|
+
<summary>
|
1191
|
+
Gets or sets the kernel that owns the component container.
|
1192
|
+
</summary>
|
1193
|
+
</member>
|
1194
|
+
<member name="T:Ninject.Infrastructure.Future`1">
|
1195
|
+
<summary>
|
1196
|
+
Represents a future value.
|
1197
|
+
</summary>
|
1198
|
+
<typeparam name="T">The type of value.</typeparam>
|
1199
|
+
</member>
|
1200
|
+
<member name="M:Ninject.Infrastructure.Future`1.#ctor(System.Func{`0})">
|
1201
|
+
<summary>
|
1202
|
+
Initializes a new instance of the Future<T> class.
|
1203
|
+
</summary>
|
1204
|
+
<param name="callback">The callback that will be triggered to read the value.</param>
|
1205
|
+
</member>
|
1206
|
+
<member name="M:Ninject.Infrastructure.Future`1.op_Implicit(Ninject.Infrastructure.Future{`0})~`0">
|
1207
|
+
<summary>
|
1208
|
+
Gets the value from the future.
|
1209
|
+
</summary>
|
1210
|
+
<param name="future">The future.</param>
|
1211
|
+
<returns>The future value.</returns>
|
1212
|
+
</member>
|
1213
|
+
<member name="P:Ninject.Infrastructure.Future`1.Value">
|
1214
|
+
<summary>
|
1215
|
+
Gets the value, resolving it if necessary.
|
1216
|
+
</summary>
|
1217
|
+
</member>
|
1218
|
+
<member name="P:Ninject.Infrastructure.Future`1.Callback">
|
1219
|
+
<summary>
|
1220
|
+
Gets the callback that will be called to resolve the value.
|
1221
|
+
</summary>
|
1222
|
+
</member>
|
1223
|
+
<member name="T:Ninject.Infrastructure.IHaveBinding">
|
1224
|
+
<summary>
|
1225
|
+
Indicates the object has a reference to a <see cref="T:Ninject.Planning.Bindings.IBinding"/>.
|
1226
|
+
</summary>
|
1227
|
+
</member>
|
1228
|
+
<member name="P:Ninject.Infrastructure.IHaveBinding.Binding">
|
1229
|
+
<summary>
|
1230
|
+
Gets the binding.
|
1231
|
+
</summary>
|
1232
|
+
</member>
|
1233
|
+
<member name="T:Ninject.Infrastructure.IHaveKernel">
|
1234
|
+
<summary>
|
1235
|
+
Indicates that the object has a reference to an <see cref="T:Ninject.IKernel"/>.
|
1236
|
+
</summary>
|
1237
|
+
</member>
|
1238
|
+
<member name="P:Ninject.Infrastructure.IHaveKernel.Kernel">
|
1239
|
+
<summary>
|
1240
|
+
Gets the kernel.
|
1241
|
+
</summary>
|
1242
|
+
</member>
|
1243
|
+
<member name="T:Ninject.Infrastructure.Multimap`2">
|
1244
|
+
<summary>
|
1245
|
+
A data structure that contains multiple values for a each key.
|
1246
|
+
</summary>
|
1247
|
+
<typeparam name="K">The type of key.</typeparam>
|
1248
|
+
<typeparam name="V">The type of value.</typeparam>
|
1249
|
+
</member>
|
1250
|
+
<member name="M:Ninject.Infrastructure.Multimap`2.Add(`0,`1)">
|
1251
|
+
<summary>
|
1252
|
+
Adds the specified value for the specified key.
|
1253
|
+
</summary>
|
1254
|
+
<param name="key">The key.</param>
|
1255
|
+
<param name="value">The value.</param>
|
1256
|
+
</member>
|
1257
|
+
<member name="M:Ninject.Infrastructure.Multimap`2.Remove(`0,`1)">
|
1258
|
+
<summary>
|
1259
|
+
Removes the specified value for the specified key.
|
1260
|
+
</summary>
|
1261
|
+
<param name="key">The key.</param>
|
1262
|
+
<param name="value">The value.</param>
|
1263
|
+
<returns><c>True</c> if such a value existed and was removed; otherwise <c>false</c>.</returns>
|
1264
|
+
</member>
|
1265
|
+
<member name="M:Ninject.Infrastructure.Multimap`2.RemoveAll(`0)">
|
1266
|
+
<summary>
|
1267
|
+
Removes all values for the specified key.
|
1268
|
+
</summary>
|
1269
|
+
<param name="key">The key.</param>
|
1270
|
+
<returns><c>True</c> if any such values existed; otherwise <c>false</c>.</returns>
|
1271
|
+
</member>
|
1272
|
+
<member name="M:Ninject.Infrastructure.Multimap`2.Clear">
|
1273
|
+
<summary>
|
1274
|
+
Removes all values.
|
1275
|
+
</summary>
|
1276
|
+
</member>
|
1277
|
+
<member name="M:Ninject.Infrastructure.Multimap`2.ContainsKey(`0)">
|
1278
|
+
<summary>
|
1279
|
+
Determines whether the multimap contains any values for the specified key.
|
1280
|
+
</summary>
|
1281
|
+
<param name="key">The key.</param>
|
1282
|
+
<returns><c>True</c> if the multimap has one or more values for the specified key; otherwise, <c>false</c>.</returns>
|
1283
|
+
</member>
|
1284
|
+
<member name="M:Ninject.Infrastructure.Multimap`2.ContainsValue(`0,`1)">
|
1285
|
+
<summary>
|
1286
|
+
Determines whether the multimap contains the specified value for the specified key.
|
1287
|
+
</summary>
|
1288
|
+
<param name="key">The key.</param>
|
1289
|
+
<param name="value">The value.</param>
|
1290
|
+
<returns><c>True</c> if the multimap contains such a value; otherwise, <c>false</c>.</returns>
|
1291
|
+
</member>
|
1292
|
+
<member name="M:Ninject.Infrastructure.Multimap`2.GetEnumerator">
|
1293
|
+
<summary>
|
1294
|
+
Returns an enumerator that iterates through a the multimap.
|
1295
|
+
</summary>
|
1296
|
+
<returns>An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the multimap.</returns>
|
1297
|
+
</member>
|
1298
|
+
<member name="P:Ninject.Infrastructure.Multimap`2.Item(`0)">
|
1299
|
+
<summary>
|
1300
|
+
Gets the collection of values stored under the specified key.
|
1301
|
+
</summary>
|
1302
|
+
<param name="key">The key.</param>
|
1303
|
+
</member>
|
1304
|
+
<member name="P:Ninject.Infrastructure.Multimap`2.Keys">
|
1305
|
+
<summary>
|
1306
|
+
Gets the collection of keys.
|
1307
|
+
</summary>
|
1308
|
+
</member>
|
1309
|
+
<member name="P:Ninject.Infrastructure.Multimap`2.Values">
|
1310
|
+
<summary>
|
1311
|
+
Gets the collection of collections of values.
|
1312
|
+
</summary>
|
1313
|
+
</member>
|
1314
|
+
<member name="T:Ninject.Infrastructure.RequestFlags">
|
1315
|
+
<summary>
|
1316
|
+
Defines the style of request (single or multi-injection, whether it is optional, etc.)
|
1317
|
+
</summary>
|
1318
|
+
</member>
|
1319
|
+
<member name="F:Ninject.Infrastructure.RequestFlags.Single">
|
1320
|
+
<summary>
|
1321
|
+
Indicates a request for a single instance of a service.
|
1322
|
+
</summary>
|
1323
|
+
</member>
|
1324
|
+
<member name="F:Ninject.Infrastructure.RequestFlags.Multiple">
|
1325
|
+
<summary>
|
1326
|
+
Indicates a request for multiple instances of a service.
|
1327
|
+
</summary>
|
1328
|
+
</member>
|
1329
|
+
<member name="F:Ninject.Infrastructure.RequestFlags.Optional">
|
1330
|
+
<summary>
|
1331
|
+
Indicates that null should be returned (instead of throwing) if the service cannot be resolved.
|
1332
|
+
</summary>
|
1333
|
+
</member>
|
1334
|
+
<member name="T:Ninject.Infrastructure.StandardScopeCallbacks">
|
1335
|
+
<summary>
|
1336
|
+
Scope callbacks for standard scopes.
|
1337
|
+
</summary>
|
1338
|
+
</member>
|
1339
|
+
<member name="F:Ninject.Infrastructure.StandardScopeCallbacks.Transient">
|
1340
|
+
<summary>
|
1341
|
+
Gets the callback for transient scope.
|
1342
|
+
</summary>
|
1343
|
+
</member>
|
1344
|
+
<member name="F:Ninject.Infrastructure.StandardScopeCallbacks.Singleton">
|
1345
|
+
<summary>
|
1346
|
+
Gets the callback for singleton scope.
|
1347
|
+
</summary>
|
1348
|
+
</member>
|
1349
|
+
<member name="F:Ninject.Infrastructure.StandardScopeCallbacks.Thread">
|
1350
|
+
<summary>
|
1351
|
+
Gets the callback for thread scope.
|
1352
|
+
</summary>
|
1353
|
+
</member>
|
1354
|
+
<member name="T:Ninject.Injection.ConstructorInjector">
|
1355
|
+
<summary>
|
1356
|
+
A delegate that can inject values into a constructor.
|
1357
|
+
</summary>
|
1358
|
+
</member>
|
1359
|
+
<member name="T:Ninject.Injection.DynamicMethodInjectorFactory">
|
1360
|
+
<summary>
|
1361
|
+
Creates injectors for members via <see cref="T:System.Reflection.Emit.DynamicMethod"/>s.
|
1362
|
+
</summary>
|
1363
|
+
</member>
|
1364
|
+
<member name="T:Ninject.Injection.IInjectorFactory">
|
1365
|
+
<summary>
|
1366
|
+
Creates injectors from members.
|
1367
|
+
</summary>
|
1368
|
+
</member>
|
1369
|
+
<member name="M:Ninject.Injection.IInjectorFactory.Create(System.Reflection.ConstructorInfo)">
|
1370
|
+
<summary>
|
1371
|
+
Gets or creates an injector for the specified constructor.
|
1372
|
+
</summary>
|
1373
|
+
<param name="constructor">The constructor.</param>
|
1374
|
+
<returns>The created injector.</returns>
|
1375
|
+
</member>
|
1376
|
+
<member name="M:Ninject.Injection.IInjectorFactory.Create(System.Reflection.PropertyInfo)">
|
1377
|
+
<summary>
|
1378
|
+
Gets or creates an injector for the specified property.
|
1379
|
+
</summary>
|
1380
|
+
<param name="property">The property.</param>
|
1381
|
+
<returns>The created injector.</returns>
|
1382
|
+
</member>
|
1383
|
+
<member name="M:Ninject.Injection.IInjectorFactory.Create(System.Reflection.MethodInfo)">
|
1384
|
+
<summary>
|
1385
|
+
Gets or creates an injector for the specified method.
|
1386
|
+
</summary>
|
1387
|
+
<param name="method">The method.</param>
|
1388
|
+
<returns>The created injector.</returns>
|
1389
|
+
</member>
|
1390
|
+
<member name="M:Ninject.Injection.DynamicMethodInjectorFactory.Create(System.Reflection.ConstructorInfo)">
|
1391
|
+
<summary>
|
1392
|
+
Gets or creates an injector for the specified constructor.
|
1393
|
+
</summary>
|
1394
|
+
<param name="constructor">The constructor.</param>
|
1395
|
+
<returns>The created injector.</returns>
|
1396
|
+
</member>
|
1397
|
+
<member name="M:Ninject.Injection.DynamicMethodInjectorFactory.Create(System.Reflection.PropertyInfo)">
|
1398
|
+
<summary>
|
1399
|
+
Gets or creates an injector for the specified property.
|
1400
|
+
</summary>
|
1401
|
+
<param name="property">The property.</param>
|
1402
|
+
<returns>The created injector.</returns>
|
1403
|
+
</member>
|
1404
|
+
<member name="M:Ninject.Injection.DynamicMethodInjectorFactory.Create(System.Reflection.MethodInfo)">
|
1405
|
+
<summary>
|
1406
|
+
Gets or creates an injector for the specified method.
|
1407
|
+
</summary>
|
1408
|
+
<param name="method">The method.</param>
|
1409
|
+
<returns>The created injector.</returns>
|
1410
|
+
</member>
|
1411
|
+
<member name="T:Ninject.Injection.MethodInjector">
|
1412
|
+
<summary>
|
1413
|
+
A delegate that can inject values into a method.
|
1414
|
+
</summary>
|
1415
|
+
</member>
|
1416
|
+
<member name="T:Ninject.Injection.PropertyInjector">
|
1417
|
+
<summary>
|
1418
|
+
A delegate that can inject values into a property.
|
1419
|
+
</summary>
|
1420
|
+
</member>
|
1421
|
+
<member name="T:Ninject.Injection.ReflectionInjectorFactory">
|
1422
|
+
<summary>
|
1423
|
+
Creates injectors from members via reflective invocation.
|
1424
|
+
</summary>
|
1425
|
+
</member>
|
1426
|
+
<member name="M:Ninject.Injection.ReflectionInjectorFactory.Create(System.Reflection.ConstructorInfo)">
|
1427
|
+
<summary>
|
1428
|
+
Gets or creates an injector for the specified constructor.
|
1429
|
+
</summary>
|
1430
|
+
<param name="constructor">The constructor.</param>
|
1431
|
+
<returns>The created injector.</returns>
|
1432
|
+
</member>
|
1433
|
+
<member name="M:Ninject.Injection.ReflectionInjectorFactory.Create(System.Reflection.PropertyInfo)">
|
1434
|
+
<summary>
|
1435
|
+
Gets or creates an injector for the specified property.
|
1436
|
+
</summary>
|
1437
|
+
<param name="property">The property.</param>
|
1438
|
+
<returns>The created injector.</returns>
|
1439
|
+
</member>
|
1440
|
+
<member name="M:Ninject.Injection.ReflectionInjectorFactory.Create(System.Reflection.MethodInfo)">
|
1441
|
+
<summary>
|
1442
|
+
Gets or creates an injector for the specified method.
|
1443
|
+
</summary>
|
1444
|
+
<param name="method">The method.</param>
|
1445
|
+
<returns>The created injector.</returns>
|
1446
|
+
</member>
|
1447
|
+
<member name="T:Ninject.Modules.INinjectModule">
|
1448
|
+
<summary>
|
1449
|
+
A pluggable unit that can be loaded into an <see cref="T:Ninject.IKernel"/>.
|
1450
|
+
</summary>
|
1451
|
+
</member>
|
1452
|
+
<member name="M:Ninject.Modules.INinjectModule.OnLoad(Ninject.IKernel)">
|
1453
|
+
<summary>
|
1454
|
+
Called when the module is loaded into a kernel.
|
1455
|
+
</summary>
|
1456
|
+
<param name="kernel">The kernel that is loading the module.</param>
|
1457
|
+
</member>
|
1458
|
+
<member name="M:Ninject.Modules.INinjectModule.OnUnload(Ninject.IKernel)">
|
1459
|
+
<summary>
|
1460
|
+
Called when the module is unloaded from a kernel.
|
1461
|
+
</summary>
|
1462
|
+
<param name="kernel">The kernel that is unloading the module.</param>
|
1463
|
+
</member>
|
1464
|
+
<member name="P:Ninject.Modules.INinjectModule.Name">
|
1465
|
+
<summary>
|
1466
|
+
Gets the module's name.
|
1467
|
+
</summary>
|
1468
|
+
</member>
|
1469
|
+
<member name="T:Ninject.Modules.NinjectModule">
|
1470
|
+
<summary>
|
1471
|
+
A loadable unit that defines bindings for your application.
|
1472
|
+
</summary>
|
1473
|
+
</member>
|
1474
|
+
<member name="T:Ninject.Syntax.BindingRoot">
|
1475
|
+
<summary>
|
1476
|
+
Provides a path to register bindings.
|
1477
|
+
</summary>
|
1478
|
+
</member>
|
1479
|
+
<member name="T:Ninject.Syntax.IBindingRoot">
|
1480
|
+
<summary>
|
1481
|
+
Provides a path to register bindings.
|
1482
|
+
</summary>
|
1483
|
+
</member>
|
1484
|
+
<member name="M:Ninject.Syntax.IBindingRoot.Bind``1">
|
1485
|
+
<summary>
|
1486
|
+
Declares a binding for the specified service.
|
1487
|
+
</summary>
|
1488
|
+
<typeparam name="T">The service to bind.</typeparam>
|
1489
|
+
</member>
|
1490
|
+
<member name="M:Ninject.Syntax.IBindingRoot.Bind(System.Type)">
|
1491
|
+
<summary>
|
1492
|
+
Declares a binding from the service to itself.
|
1493
|
+
</summary>
|
1494
|
+
<param name="service">The service to bind.</param>
|
1495
|
+
</member>
|
1496
|
+
<member name="M:Ninject.Syntax.IBindingRoot.Unbind``1">
|
1497
|
+
<summary>
|
1498
|
+
Unregisters all bindings for the specified service.
|
1499
|
+
</summary>
|
1500
|
+
<typeparam name="T">The service to unbind.</typeparam>
|
1501
|
+
</member>
|
1502
|
+
<member name="M:Ninject.Syntax.IBindingRoot.Unbind(System.Type)">
|
1503
|
+
<summary>
|
1504
|
+
Unregisters all bindings for the specified service.
|
1505
|
+
</summary>
|
1506
|
+
<param name="service">The service to unbind.</param>
|
1507
|
+
</member>
|
1508
|
+
<member name="M:Ninject.Syntax.IBindingRoot.Rebind``1">
|
1509
|
+
<summary>
|
1510
|
+
Removes any existing bindings for the specified service, and declares a new one.
|
1511
|
+
</summary>
|
1512
|
+
<typeparam name="T">The service to re-bind.</typeparam>
|
1513
|
+
</member>
|
1514
|
+
<member name="M:Ninject.Syntax.IBindingRoot.Rebind(System.Type)">
|
1515
|
+
<summary>
|
1516
|
+
Removes any existing bindings for the specified service, and declares a new one.
|
1517
|
+
</summary>
|
1518
|
+
<param name="service">The service to re-bind.</param>
|
1519
|
+
</member>
|
1520
|
+
<member name="M:Ninject.Syntax.IBindingRoot.AddBinding(Ninject.Planning.Bindings.IBinding)">
|
1521
|
+
<summary>
|
1522
|
+
Registers the specified binding.
|
1523
|
+
</summary>
|
1524
|
+
<param name="binding">The binding to add.</param>
|
1525
|
+
</member>
|
1526
|
+
<member name="M:Ninject.Syntax.IBindingRoot.RemoveBinding(Ninject.Planning.Bindings.IBinding)">
|
1527
|
+
<summary>
|
1528
|
+
Unregisters the specified binding.
|
1529
|
+
</summary>
|
1530
|
+
<param name="binding">The binding to remove.</param>
|
1531
|
+
</member>
|
1532
|
+
<member name="M:Ninject.Syntax.BindingRoot.Bind``1">
|
1533
|
+
<summary>
|
1534
|
+
Declares a binding for the specified service.
|
1535
|
+
</summary>
|
1536
|
+
<typeparam name="T">The service to bind.</typeparam>
|
1537
|
+
</member>
|
1538
|
+
<member name="M:Ninject.Syntax.BindingRoot.Bind(System.Type)">
|
1539
|
+
<summary>
|
1540
|
+
Declares a binding for the specified service.
|
1541
|
+
</summary>
|
1542
|
+
<param name="service">The service to bind.</param>
|
1543
|
+
</member>
|
1544
|
+
<member name="M:Ninject.Syntax.BindingRoot.Unbind``1">
|
1545
|
+
<summary>
|
1546
|
+
Unregisters all bindings for the specified service.
|
1547
|
+
</summary>
|
1548
|
+
<typeparam name="T">The service to unbind.</typeparam>
|
1549
|
+
</member>
|
1550
|
+
<member name="M:Ninject.Syntax.BindingRoot.Unbind(System.Type)">
|
1551
|
+
<summary>
|
1552
|
+
Unregisters all bindings for the specified service.
|
1553
|
+
</summary>
|
1554
|
+
<param name="service">The service to unbind.</param>
|
1555
|
+
</member>
|
1556
|
+
<member name="M:Ninject.Syntax.BindingRoot.Rebind``1">
|
1557
|
+
<summary>
|
1558
|
+
Removes any existing bindings for the specified service, and declares a new one.
|
1559
|
+
</summary>
|
1560
|
+
<typeparam name="T">The service to re-bind.</typeparam>
|
1561
|
+
</member>
|
1562
|
+
<member name="M:Ninject.Syntax.BindingRoot.Rebind(System.Type)">
|
1563
|
+
<summary>
|
1564
|
+
Removes any existing bindings for the specified service, and declares a new one.
|
1565
|
+
</summary>
|
1566
|
+
<param name="service">The service to re-bind.</param>
|
1567
|
+
</member>
|
1568
|
+
<member name="M:Ninject.Syntax.BindingRoot.AddBinding(Ninject.Planning.Bindings.IBinding)">
|
1569
|
+
<summary>
|
1570
|
+
Registers the specified binding.
|
1571
|
+
</summary>
|
1572
|
+
<param name="binding">The binding to add.</param>
|
1573
|
+
</member>
|
1574
|
+
<member name="M:Ninject.Syntax.BindingRoot.RemoveBinding(Ninject.Planning.Bindings.IBinding)">
|
1575
|
+
<summary>
|
1576
|
+
Unregisters the specified binding.
|
1577
|
+
</summary>
|
1578
|
+
<param name="binding">The binding to remove.</param>
|
1579
|
+
</member>
|
1580
|
+
<member name="M:Ninject.Syntax.BindingRoot.CreateBindingBuilder``1(Ninject.Planning.Bindings.IBinding)">
|
1581
|
+
<summary>
|
1582
|
+
Creates a new builder for the specified binding.
|
1583
|
+
</summary>
|
1584
|
+
<typeparam name="T">The type restriction to apply to the binding builder.</typeparam>
|
1585
|
+
<param name="binding">The binding that will be built.</param>
|
1586
|
+
<returns>The created builder.</returns>
|
1587
|
+
</member>
|
1588
|
+
<member name="M:Ninject.Modules.NinjectModule.#ctor">
|
1589
|
+
<summary>
|
1590
|
+
Initializes a new instance of the <see cref="T:Ninject.Modules.NinjectModule"/> class.
|
1591
|
+
</summary>
|
1592
|
+
</member>
|
1593
|
+
<member name="M:Ninject.Modules.NinjectModule.OnLoad(Ninject.IKernel)">
|
1594
|
+
<summary>
|
1595
|
+
Called when the module is loaded into a kernel.
|
1596
|
+
</summary>
|
1597
|
+
<param name="kernel">The kernel that is loading the module.</param>
|
1598
|
+
</member>
|
1599
|
+
<member name="M:Ninject.Modules.NinjectModule.OnUnload(Ninject.IKernel)">
|
1600
|
+
<summary>
|
1601
|
+
Called when the module is unloaded from a kernel.
|
1602
|
+
</summary>
|
1603
|
+
<param name="kernel">The kernel that is unloading the module.</param>
|
1604
|
+
</member>
|
1605
|
+
<member name="M:Ninject.Modules.NinjectModule.Load">
|
1606
|
+
<summary>
|
1607
|
+
Loads the module into the kernel.
|
1608
|
+
</summary>
|
1609
|
+
</member>
|
1610
|
+
<member name="M:Ninject.Modules.NinjectModule.Unload">
|
1611
|
+
<summary>
|
1612
|
+
Unloads the module from the kernel.
|
1613
|
+
</summary>
|
1614
|
+
</member>
|
1615
|
+
<member name="M:Ninject.Modules.NinjectModule.Unbind(System.Type)">
|
1616
|
+
<summary>
|
1617
|
+
Unregisters all bindings for the specified service.
|
1618
|
+
</summary>
|
1619
|
+
<param name="service">The service to unbind.</param>
|
1620
|
+
</member>
|
1621
|
+
<member name="M:Ninject.Modules.NinjectModule.AddBinding(Ninject.Planning.Bindings.IBinding)">
|
1622
|
+
<summary>
|
1623
|
+
Registers the specified binding.
|
1624
|
+
</summary>
|
1625
|
+
<param name="binding">The binding to add.</param>
|
1626
|
+
</member>
|
1627
|
+
<member name="M:Ninject.Modules.NinjectModule.RemoveBinding(Ninject.Planning.Bindings.IBinding)">
|
1628
|
+
<summary>
|
1629
|
+
Unregisters the specified binding.
|
1630
|
+
</summary>
|
1631
|
+
<param name="binding">The binding to remove.</param>
|
1632
|
+
</member>
|
1633
|
+
<member name="M:Ninject.Modules.NinjectModule.CreateBindingBuilder``1(Ninject.Planning.Bindings.IBinding)">
|
1634
|
+
<summary>
|
1635
|
+
Creates a new builder for the specified binding.
|
1636
|
+
</summary>
|
1637
|
+
<typeparam name="T">The type restriction to apply to the binding builder.</typeparam>
|
1638
|
+
<param name="binding">The binding that will be built.</param>
|
1639
|
+
<returns>The created builder.</returns>
|
1640
|
+
</member>
|
1641
|
+
<member name="P:Ninject.Modules.NinjectModule.Kernel">
|
1642
|
+
<summary>
|
1643
|
+
Gets the kernel that the module is loaded into.
|
1644
|
+
</summary>
|
1645
|
+
</member>
|
1646
|
+
<member name="P:Ninject.Modules.NinjectModule.Name">
|
1647
|
+
<summary>
|
1648
|
+
Gets the module's name. Only a single module with a given name can be loaded at one time.
|
1649
|
+
</summary>
|
1650
|
+
</member>
|
1651
|
+
<member name="P:Ninject.Modules.NinjectModule.Bindings">
|
1652
|
+
<summary>
|
1653
|
+
Gets the bindings that were registered by the module.
|
1654
|
+
</summary>
|
1655
|
+
</member>
|
1656
|
+
<member name="T:Ninject.Parameters.ConstructorArgument">
|
1657
|
+
<summary>
|
1658
|
+
Overrides the injected value of a constructor argument.
|
1659
|
+
</summary>
|
1660
|
+
</member>
|
1661
|
+
<member name="T:Ninject.Parameters.Parameter">
|
1662
|
+
<summary>
|
1663
|
+
Modifies an activation process in some way.
|
1664
|
+
</summary>
|
1665
|
+
</member>
|
1666
|
+
<member name="T:Ninject.Parameters.IParameter">
|
1667
|
+
<summary>
|
1668
|
+
Modifies an activation process in some way.
|
1669
|
+
</summary>
|
1670
|
+
</member>
|
1671
|
+
<member name="M:Ninject.Parameters.IParameter.GetValue(Ninject.Activation.IContext)">
|
1672
|
+
<summary>
|
1673
|
+
Gets the value for the parameter within the specified context.
|
1674
|
+
</summary>
|
1675
|
+
<param name="context">The context.</param>
|
1676
|
+
<returns>The value for the parameter.</returns>
|
1677
|
+
</member>
|
1678
|
+
<member name="P:Ninject.Parameters.IParameter.Name">
|
1679
|
+
<summary>
|
1680
|
+
Gets the name of the parameter.
|
1681
|
+
</summary>
|
1682
|
+
</member>
|
1683
|
+
<member name="P:Ninject.Parameters.IParameter.ShouldInherit">
|
1684
|
+
<summary>
|
1685
|
+
Gets a value indicating whether the parameter should be inherited into child requests.
|
1686
|
+
</summary>
|
1687
|
+
</member>
|
1688
|
+
<member name="M:Ninject.Parameters.Parameter.#ctor(System.String,System.Object,System.Boolean)">
|
1689
|
+
<summary>
|
1690
|
+
Initializes a new instance of the <see cref="T:Ninject.Parameters.Parameter"/> class.
|
1691
|
+
</summary>
|
1692
|
+
<param name="name">The name of the parameter.</param>
|
1693
|
+
<param name="value">The value of the parameter.</param>
|
1694
|
+
<param name="shouldInherit">Whether the parameter should be inherited into child requests.</param>
|
1695
|
+
</member>
|
1696
|
+
<member name="M:Ninject.Parameters.Parameter.#ctor(System.String,System.Func{Ninject.Activation.IContext,System.Object},System.Boolean)">
|
1697
|
+
<summary>
|
1698
|
+
Initializes a new instance of the <see cref="T:Ninject.Parameters.Parameter"/> class.
|
1699
|
+
</summary>
|
1700
|
+
<param name="name">The name of the parameter.</param>
|
1701
|
+
<param name="valueCallback">The callback that will be triggered to get the parameter's value.</param>
|
1702
|
+
<param name="shouldInherit">Whether the parameter should be inherited into child requests.</param>
|
1703
|
+
</member>
|
1704
|
+
<member name="M:Ninject.Parameters.Parameter.GetValue(Ninject.Activation.IContext)">
|
1705
|
+
<summary>
|
1706
|
+
Gets the value for the parameter within the specified context.
|
1707
|
+
</summary>
|
1708
|
+
<param name="context">The context.</param>
|
1709
|
+
<returns>The value for the parameter.</returns>
|
1710
|
+
</member>
|
1711
|
+
<member name="M:Ninject.Parameters.Parameter.Equals(System.Object)">
|
1712
|
+
<summary>
|
1713
|
+
Determines whether the object equals the specified object.
|
1714
|
+
</summary>
|
1715
|
+
<param name="obj">An object to compare with this object.</param>
|
1716
|
+
<returns><c>True</c> if the objects are equal; otherwise <c>false</c></returns>
|
1717
|
+
</member>
|
1718
|
+
<member name="M:Ninject.Parameters.Parameter.GetHashCode">
|
1719
|
+
<summary>
|
1720
|
+
Serves as a hash function for a particular type.
|
1721
|
+
</summary>
|
1722
|
+
<returns>A hash code for the object.</returns>
|
1723
|
+
</member>
|
1724
|
+
<member name="M:Ninject.Parameters.Parameter.Equals(Ninject.Parameters.IParameter)">
|
1725
|
+
<summary>
|
1726
|
+
Indicates whether the current object is equal to another object of the same type.
|
1727
|
+
</summary>
|
1728
|
+
<param name="other">An object to compare with this object.</param>
|
1729
|
+
<returns><c>True</c> if the objects are equal; otherwise <c>false</c></returns>
|
1730
|
+
</member>
|
1731
|
+
<member name="P:Ninject.Parameters.Parameter.Name">
|
1732
|
+
<summary>
|
1733
|
+
Gets the name of the parameter.
|
1734
|
+
</summary>
|
1735
|
+
</member>
|
1736
|
+
<member name="P:Ninject.Parameters.Parameter.ShouldInherit">
|
1737
|
+
<summary>
|
1738
|
+
Gets a value indicating whether the parameter should be inherited into child requests.
|
1739
|
+
</summary>
|
1740
|
+
</member>
|
1741
|
+
<member name="P:Ninject.Parameters.Parameter.ValueCallback">
|
1742
|
+
<summary>
|
1743
|
+
Gets or sets the callback that will be triggered to get the parameter's value.
|
1744
|
+
</summary>
|
1745
|
+
</member>
|
1746
|
+
<member name="M:Ninject.Parameters.ConstructorArgument.#ctor(System.String,System.Object)">
|
1747
|
+
<summary>
|
1748
|
+
Initializes a new instance of the <see cref="T:Ninject.Parameters.ConstructorArgument"/> class.
|
1749
|
+
</summary>
|
1750
|
+
<param name="name">The name of the argument to override.</param>
|
1751
|
+
<param name="value">The value to inject into the property.</param>
|
1752
|
+
</member>
|
1753
|
+
<member name="M:Ninject.Parameters.ConstructorArgument.#ctor(System.String,System.Func{Ninject.Activation.IContext,System.Object})">
|
1754
|
+
<summary>
|
1755
|
+
Initializes a new instance of the <see cref="T:Ninject.Parameters.ConstructorArgument"/> class.
|
1756
|
+
</summary>
|
1757
|
+
<param name="name">The name of the argument to override.</param>
|
1758
|
+
<param name="valueCallback">The callback to invoke to get the value that should be injected.</param>
|
1759
|
+
</member>
|
1760
|
+
<member name="T:Ninject.Parameters.PropertyValue">
|
1761
|
+
<summary>
|
1762
|
+
Overrides the injected value of a property.
|
1763
|
+
</summary>
|
1764
|
+
</member>
|
1765
|
+
<member name="M:Ninject.Parameters.PropertyValue.#ctor(System.String,System.Object)">
|
1766
|
+
<summary>
|
1767
|
+
Initializes a new instance of the <see cref="T:Ninject.Parameters.PropertyValue"/> class.
|
1768
|
+
</summary>
|
1769
|
+
<param name="name">The name of the property to override.</param>
|
1770
|
+
<param name="value">The value to inject into the property.</param>
|
1771
|
+
</member>
|
1772
|
+
<member name="M:Ninject.Parameters.PropertyValue.#ctor(System.String,System.Func{Ninject.Activation.IContext,System.Object})">
|
1773
|
+
<summary>
|
1774
|
+
Initializes a new instance of the <see cref="T:Ninject.Parameters.PropertyValue"/> class.
|
1775
|
+
</summary>
|
1776
|
+
<param name="name">The name of the property to override.</param>
|
1777
|
+
<param name="valueCallback">The callback to invoke to get the value that should be injected.</param>
|
1778
|
+
</member>
|
1779
|
+
<member name="T:Ninject.Planning.Bindings.Resolvers.IBindingResolver">
|
1780
|
+
<summary>
|
1781
|
+
Contains logic about which bindings to use for a given service request.
|
1782
|
+
</summary>
|
1783
|
+
</member>
|
1784
|
+
<member name="M:Ninject.Planning.Bindings.Resolvers.IBindingResolver.Resolve(Ninject.Infrastructure.Multimap{System.Type,Ninject.Planning.Bindings.IBinding},System.Type)">
|
1785
|
+
<summary>
|
1786
|
+
Returns any bindings from the specified collection that match the specified service.
|
1787
|
+
</summary>
|
1788
|
+
<param name="bindings">The multimap of all registered bindings.</param>
|
1789
|
+
<param name="service">The service in question.</param>
|
1790
|
+
<returns>The series of matching bindings.</returns>
|
1791
|
+
</member>
|
1792
|
+
<member name="T:Ninject.Planning.Bindings.Resolvers.OpenGenericBindingResolver">
|
1793
|
+
<summary>
|
1794
|
+
Resolves bindings for open generic types.
|
1795
|
+
</summary>
|
1796
|
+
</member>
|
1797
|
+
<member name="M:Ninject.Planning.Bindings.Resolvers.OpenGenericBindingResolver.Resolve(Ninject.Infrastructure.Multimap{System.Type,Ninject.Planning.Bindings.IBinding},System.Type)">
|
1798
|
+
<summary>
|
1799
|
+
Returns any bindings from the specified collection that match the specified service.
|
1800
|
+
</summary>
|
1801
|
+
<param name="bindings">The multimap of all registered bindings.</param>
|
1802
|
+
<param name="service">The service in question.</param>
|
1803
|
+
<returns>The series of matching bindings.</returns>
|
1804
|
+
</member>
|
1805
|
+
<member name="T:Ninject.Planning.Bindings.Resolvers.StandardBindingResolver">
|
1806
|
+
<summary>
|
1807
|
+
Resolves bindings that have been registered directly for the service.
|
1808
|
+
</summary>
|
1809
|
+
</member>
|
1810
|
+
<member name="M:Ninject.Planning.Bindings.Resolvers.StandardBindingResolver.Resolve(Ninject.Infrastructure.Multimap{System.Type,Ninject.Planning.Bindings.IBinding},System.Type)">
|
1811
|
+
<summary>
|
1812
|
+
Returns any bindings from the specified collection that match the specified service.
|
1813
|
+
</summary>
|
1814
|
+
<param name="bindings">The multimap of all registered bindings.</param>
|
1815
|
+
<param name="service">The service in question.</param>
|
1816
|
+
<returns>The series of matching bindings.</returns>
|
1817
|
+
</member>
|
1818
|
+
<member name="T:Ninject.Planning.Bindings.Binding">
|
1819
|
+
<summary>
|
1820
|
+
Contains information about a service registration.
|
1821
|
+
</summary>
|
1822
|
+
</member>
|
1823
|
+
<member name="T:Ninject.Planning.Bindings.IBinding">
|
1824
|
+
<summary>
|
1825
|
+
Contains information about a service registration.
|
1826
|
+
</summary>
|
1827
|
+
</member>
|
1828
|
+
<member name="M:Ninject.Planning.Bindings.IBinding.GetProvider(Ninject.Activation.IContext)">
|
1829
|
+
<summary>
|
1830
|
+
Gets the provider for the binding.
|
1831
|
+
</summary>
|
1832
|
+
<param name="context">The context.</param>
|
1833
|
+
<returns>The provider to use.</returns>
|
1834
|
+
</member>
|
1835
|
+
<member name="M:Ninject.Planning.Bindings.IBinding.GetScope(Ninject.Activation.IContext)">
|
1836
|
+
<summary>
|
1837
|
+
Gets the scope for the binding, if any.
|
1838
|
+
</summary>
|
1839
|
+
<param name="context">The context.</param>
|
1840
|
+
<returns>The object that will act as the scope, or <see langword="null"/> if the service is transient.</returns>
|
1841
|
+
</member>
|
1842
|
+
<member name="M:Ninject.Planning.Bindings.IBinding.Matches(Ninject.Activation.IRequest)">
|
1843
|
+
<summary>
|
1844
|
+
Determines whether the specified request satisfies the condition defined on the binding,
|
1845
|
+
if one was defined.
|
1846
|
+
</summary>
|
1847
|
+
<param name="request">The request.</param>
|
1848
|
+
<returns><c>True</c> if the request satisfies the condition; otherwise <c>false</c>.</returns>
|
1849
|
+
</member>
|
1850
|
+
<member name="P:Ninject.Planning.Bindings.IBinding.Service">
|
1851
|
+
<summary>
|
1852
|
+
Gets the service type that is controlled by the binding.
|
1853
|
+
</summary>
|
1854
|
+
</member>
|
1855
|
+
<member name="P:Ninject.Planning.Bindings.IBinding.Metadata">
|
1856
|
+
<summary>
|
1857
|
+
Gets the binding's metadata.
|
1858
|
+
</summary>
|
1859
|
+
</member>
|
1860
|
+
<member name="P:Ninject.Planning.Bindings.IBinding.Target">
|
1861
|
+
<summary>
|
1862
|
+
Gets or sets the type of target for the binding.
|
1863
|
+
</summary>
|
1864
|
+
</member>
|
1865
|
+
<member name="P:Ninject.Planning.Bindings.IBinding.IsImplicit">
|
1866
|
+
<summary>
|
1867
|
+
Gets or sets a value indicating whether the binding was implicitly registered.
|
1868
|
+
</summary>
|
1869
|
+
</member>
|
1870
|
+
<member name="P:Ninject.Planning.Bindings.IBinding.IsConditional">
|
1871
|
+
<summary>
|
1872
|
+
Gets a value indicating whether the binding has a condition associated with it.
|
1873
|
+
</summary>
|
1874
|
+
</member>
|
1875
|
+
<member name="P:Ninject.Planning.Bindings.IBinding.Condition">
|
1876
|
+
<summary>
|
1877
|
+
Gets or sets the condition defined for the binding.
|
1878
|
+
</summary>
|
1879
|
+
</member>
|
1880
|
+
<member name="P:Ninject.Planning.Bindings.IBinding.ProviderCallback">
|
1881
|
+
<summary>
|
1882
|
+
Gets or sets the callback that returns the provider that should be used by the binding.
|
1883
|
+
</summary>
|
1884
|
+
</member>
|
1885
|
+
<member name="P:Ninject.Planning.Bindings.IBinding.ScopeCallback">
|
1886
|
+
<summary>
|
1887
|
+
Gets or sets the callback that returns the object that will act as the binding's scope.
|
1888
|
+
</summary>
|
1889
|
+
</member>
|
1890
|
+
<member name="P:Ninject.Planning.Bindings.IBinding.Parameters">
|
1891
|
+
<summary>
|
1892
|
+
Gets the parameters defined for the binding.
|
1893
|
+
</summary>
|
1894
|
+
</member>
|
1895
|
+
<member name="P:Ninject.Planning.Bindings.IBinding.ActivationActions">
|
1896
|
+
<summary>
|
1897
|
+
Gets the actions that should be called after instances are activated via the binding.
|
1898
|
+
</summary>
|
1899
|
+
</member>
|
1900
|
+
<member name="P:Ninject.Planning.Bindings.IBinding.DeactivationActions">
|
1901
|
+
<summary>
|
1902
|
+
Gets the actions that should be called before instances are deactivated via the binding.
|
1903
|
+
</summary>
|
1904
|
+
</member>
|
1905
|
+
<member name="M:Ninject.Planning.Bindings.Binding.#ctor(System.Type)">
|
1906
|
+
<summary>
|
1907
|
+
Initializes a new instance of the <see cref="T:Ninject.Planning.Bindings.Binding"/> class.
|
1908
|
+
</summary>
|
1909
|
+
<param name="service">The service that is controlled by the binding.</param>
|
1910
|
+
</member>
|
1911
|
+
<member name="M:Ninject.Planning.Bindings.Binding.#ctor(System.Type,Ninject.Planning.Bindings.IBindingMetadata)">
|
1912
|
+
<summary>
|
1913
|
+
Initializes a new instance of the <see cref="T:Ninject.Planning.Bindings.Binding"/> class.
|
1914
|
+
</summary>
|
1915
|
+
<param name="service">The service that is controlled by the binding.</param>
|
1916
|
+
<param name="metadata">The binding's metadata container.</param>
|
1917
|
+
</member>
|
1918
|
+
<member name="M:Ninject.Planning.Bindings.Binding.GetProvider(Ninject.Activation.IContext)">
|
1919
|
+
<summary>
|
1920
|
+
Gets the provider for the binding.
|
1921
|
+
</summary>
|
1922
|
+
<param name="context">The context.</param>
|
1923
|
+
<returns>The provider to use.</returns>
|
1924
|
+
</member>
|
1925
|
+
<member name="M:Ninject.Planning.Bindings.Binding.GetScope(Ninject.Activation.IContext)">
|
1926
|
+
<summary>
|
1927
|
+
Gets the scope for the binding, if any.
|
1928
|
+
</summary>
|
1929
|
+
<param name="context">The context.</param>
|
1930
|
+
<returns>The object that will act as the scope, or <see langword="null"/> if the service is transient.</returns>
|
1931
|
+
</member>
|
1932
|
+
<member name="M:Ninject.Planning.Bindings.Binding.Matches(Ninject.Activation.IRequest)">
|
1933
|
+
<summary>
|
1934
|
+
Determines whether the specified request satisfies the conditions defined on this binding.
|
1935
|
+
</summary>
|
1936
|
+
<param name="request">The request.</param>
|
1937
|
+
<returns><c>True</c> if the request satisfies the conditions; otherwise <c>false</c>.</returns>
|
1938
|
+
</member>
|
1939
|
+
<member name="P:Ninject.Planning.Bindings.Binding.Service">
|
1940
|
+
<summary>
|
1941
|
+
Gets the service type that is controlled by the binding.
|
1942
|
+
</summary>
|
1943
|
+
</member>
|
1944
|
+
<member name="P:Ninject.Planning.Bindings.Binding.Metadata">
|
1945
|
+
<summary>
|
1946
|
+
Gets the binding's metadata.
|
1947
|
+
</summary>
|
1948
|
+
</member>
|
1949
|
+
<member name="P:Ninject.Planning.Bindings.Binding.IsImplicit">
|
1950
|
+
<summary>
|
1951
|
+
Gets or sets a value indicating whether the binding was implicitly registered.
|
1952
|
+
</summary>
|
1953
|
+
</member>
|
1954
|
+
<member name="P:Ninject.Planning.Bindings.Binding.IsConditional">
|
1955
|
+
<summary>
|
1956
|
+
Gets a value indicating whether the binding has a condition associated with it.
|
1957
|
+
</summary>
|
1958
|
+
</member>
|
1959
|
+
<member name="P:Ninject.Planning.Bindings.Binding.Target">
|
1960
|
+
<summary>
|
1961
|
+
Gets or sets the type of target for the binding.
|
1962
|
+
</summary>
|
1963
|
+
</member>
|
1964
|
+
<member name="P:Ninject.Planning.Bindings.Binding.Condition">
|
1965
|
+
<summary>
|
1966
|
+
Gets or sets the condition defined for the binding.
|
1967
|
+
</summary>
|
1968
|
+
</member>
|
1969
|
+
<member name="P:Ninject.Planning.Bindings.Binding.ProviderCallback">
|
1970
|
+
<summary>
|
1971
|
+
Gets or sets the callback that returns the provider that should be used by the binding.
|
1972
|
+
</summary>
|
1973
|
+
</member>
|
1974
|
+
<member name="P:Ninject.Planning.Bindings.Binding.ScopeCallback">
|
1975
|
+
<summary>
|
1976
|
+
Gets or sets the callback that returns the object that will act as the binding's scope.
|
1977
|
+
</summary>
|
1978
|
+
</member>
|
1979
|
+
<member name="P:Ninject.Planning.Bindings.Binding.Parameters">
|
1980
|
+
<summary>
|
1981
|
+
Gets the parameters defined for the binding.
|
1982
|
+
</summary>
|
1983
|
+
</member>
|
1984
|
+
<member name="P:Ninject.Planning.Bindings.Binding.ActivationActions">
|
1985
|
+
<summary>
|
1986
|
+
Gets the actions that should be called after instances are activated via the binding.
|
1987
|
+
</summary>
|
1988
|
+
</member>
|
1989
|
+
<member name="P:Ninject.Planning.Bindings.Binding.DeactivationActions">
|
1990
|
+
<summary>
|
1991
|
+
Gets the actions that should be called before instances are deactivated via the binding.
|
1992
|
+
</summary>
|
1993
|
+
</member>
|
1994
|
+
<member name="T:Ninject.Planning.Bindings.BindingBuilder`1">
|
1995
|
+
<summary>
|
1996
|
+
Provides a root for the fluent syntax associated with an <see cref="P:Ninject.Planning.Bindings.BindingBuilder`1.Binding"/>.
|
1997
|
+
</summary>
|
1998
|
+
</member>
|
1999
|
+
<member name="T:Ninject.Syntax.IBindingToSyntax`1">
|
2000
|
+
<summary>
|
2001
|
+
Used to define the target of a binding.
|
2002
|
+
</summary>
|
2003
|
+
<typeparam name="T">The service being bound.</typeparam>
|
2004
|
+
</member>
|
2005
|
+
<member name="T:Ninject.Syntax.IBindingSyntax">
|
2006
|
+
<summary>
|
2007
|
+
Used to define a basic binding syntax builder.
|
2008
|
+
</summary>
|
2009
|
+
</member>
|
2010
|
+
<member name="T:Ninject.Syntax.IFluentSyntax">
|
2011
|
+
<summary>
|
2012
|
+
A hack to hide methods defined on <see cref="T:System.Object"/> for IntelliSense
|
2013
|
+
on fluent interfaces. Credit to Daniel Cazzulino.
|
2014
|
+
</summary>
|
2015
|
+
</member>
|
2016
|
+
<member name="M:Ninject.Syntax.IFluentSyntax.GetType">
|
2017
|
+
<inheritdoc/>
|
2018
|
+
</member>
|
2019
|
+
<member name="M:Ninject.Syntax.IFluentSyntax.GetHashCode">
|
2020
|
+
<inheritdoc/>
|
2021
|
+
</member>
|
2022
|
+
<member name="M:Ninject.Syntax.IFluentSyntax.ToString">
|
2023
|
+
<inheritdoc/>
|
2024
|
+
</member>
|
2025
|
+
<member name="M:Ninject.Syntax.IFluentSyntax.Equals(System.Object)">
|
2026
|
+
<inheritdoc/>
|
2027
|
+
</member>
|
2028
|
+
<member name="M:Ninject.Syntax.IBindingToSyntax`1.ToSelf">
|
2029
|
+
<summary>
|
2030
|
+
Indicates that the service should be self-bound.
|
2031
|
+
</summary>
|
2032
|
+
</member>
|
2033
|
+
<member name="M:Ninject.Syntax.IBindingToSyntax`1.To``1">
|
2034
|
+
<summary>
|
2035
|
+
Indicates that the service should be bound to the specified implementation type.
|
2036
|
+
</summary>
|
2037
|
+
<typeparam name="TImplementation">The implementation type.</typeparam>
|
2038
|
+
</member>
|
2039
|
+
<member name="M:Ninject.Syntax.IBindingToSyntax`1.To(System.Type)">
|
2040
|
+
<summary>
|
2041
|
+
Indicates that the service should be bound to the specified implementation type.
|
2042
|
+
</summary>
|
2043
|
+
<param name="implementation">The implementation type.</param>
|
2044
|
+
</member>
|
2045
|
+
<member name="M:Ninject.Syntax.IBindingToSyntax`1.ToProvider``1">
|
2046
|
+
<summary>
|
2047
|
+
Indicates that the service should be bound to an instance of the specified provider type.
|
2048
|
+
The instance will be activated via the kernel when an instance of the service is activated.
|
2049
|
+
</summary>
|
2050
|
+
<typeparam name="TProvider">The type of provider to activate.</typeparam>
|
2051
|
+
</member>
|
2052
|
+
<member name="M:Ninject.Syntax.IBindingToSyntax`1.ToProvider(System.Type)">
|
2053
|
+
<summary>
|
2054
|
+
Indicates that the service should be bound to an instance of the specified provider type.
|
2055
|
+
The instance will be activated via the kernel when an instance of the service is activated.
|
2056
|
+
</summary>
|
2057
|
+
<param name="providerType">The type of provider to activate.</param>
|
2058
|
+
</member>
|
2059
|
+
<member name="M:Ninject.Syntax.IBindingToSyntax`1.ToProvider(Ninject.Activation.IProvider)">
|
2060
|
+
<summary>
|
2061
|
+
Indicates that the service should be bound to the specified provider.
|
2062
|
+
</summary>
|
2063
|
+
<param name="provider">The provider.</param>
|
2064
|
+
</member>
|
2065
|
+
<member name="M:Ninject.Syntax.IBindingToSyntax`1.ToMethod(System.Func{Ninject.Activation.IContext,`0})">
|
2066
|
+
<summary>
|
2067
|
+
Indicates that the service should be bound to the specified callback method.
|
2068
|
+
</summary>
|
2069
|
+
<param name="method">The method.</param>
|
2070
|
+
</member>
|
2071
|
+
<member name="M:Ninject.Syntax.IBindingToSyntax`1.ToConstant(`0)">
|
2072
|
+
<summary>
|
2073
|
+
Indicates that the service should be bound to the specified constant value.
|
2074
|
+
</summary>
|
2075
|
+
<param name="value">The constant value.</param>
|
2076
|
+
</member>
|
2077
|
+
<member name="T:Ninject.Syntax.IBindingWhenInNamedWithOrOnSyntax`1">
|
2078
|
+
<summary>
|
2079
|
+
Used to set the condition, scope, name, or add additional information or actions to a binding.
|
2080
|
+
</summary>
|
2081
|
+
<typeparam name="T">The service being bound.</typeparam>
|
2082
|
+
</member>
|
2083
|
+
<member name="T:Ninject.Syntax.IBindingWhenSyntax`1">
|
2084
|
+
<summary>
|
2085
|
+
Used to define the conditions under which a binding should be used.
|
2086
|
+
</summary>
|
2087
|
+
<typeparam name="T">The service being bound.</typeparam>
|
2088
|
+
</member>
|
2089
|
+
<member name="M:Ninject.Syntax.IBindingWhenSyntax`1.When(System.Func{Ninject.Activation.IRequest,System.Boolean})">
|
2090
|
+
<summary>
|
2091
|
+
Indicates that the binding should be used only for requests that support the specified condition.
|
2092
|
+
</summary>
|
2093
|
+
<param name="condition">The condition.</param>
|
2094
|
+
</member>
|
2095
|
+
<member name="M:Ninject.Syntax.IBindingWhenSyntax`1.WhenInjectedInto``1">
|
2096
|
+
<summary>
|
2097
|
+
Indicates that the binding should be used only for injections on the specified type.
|
2098
|
+
</summary>
|
2099
|
+
<typeparam name="TParent">The type.</typeparam>
|
2100
|
+
</member>
|
2101
|
+
<member name="M:Ninject.Syntax.IBindingWhenSyntax`1.WhenInjectedInto(System.Type)">
|
2102
|
+
<summary>
|
2103
|
+
Indicates that the binding should be used only for injections on the specified type.
|
2104
|
+
</summary>
|
2105
|
+
<param name="parent">The type.</param>
|
2106
|
+
</member>
|
2107
|
+
<member name="M:Ninject.Syntax.IBindingWhenSyntax`1.WhenClassHas``1">
|
2108
|
+
<summary>
|
2109
|
+
Indicates that the binding should be used only when the class being injected has
|
2110
|
+
an attribute of the specified type.
|
2111
|
+
</summary>
|
2112
|
+
<typeparam name="TAttribute">The type of attribute.</typeparam>
|
2113
|
+
</member>
|
2114
|
+
<member name="M:Ninject.Syntax.IBindingWhenSyntax`1.WhenMemberHas``1">
|
2115
|
+
<summary>
|
2116
|
+
Indicates that the binding should be used only when the member being injected has
|
2117
|
+
an attribute of the specified type.
|
2118
|
+
</summary>
|
2119
|
+
<typeparam name="TAttribute">The type of attribute.</typeparam>
|
2120
|
+
</member>
|
2121
|
+
<member name="M:Ninject.Syntax.IBindingWhenSyntax`1.WhenTargetHas``1">
|
2122
|
+
<summary>
|
2123
|
+
Indicates that the binding should be used only when the target being injected has
|
2124
|
+
an attribute of the specified type.
|
2125
|
+
</summary>
|
2126
|
+
<typeparam name="TAttribute">The type of attribute.</typeparam>
|
2127
|
+
</member>
|
2128
|
+
<member name="M:Ninject.Syntax.IBindingWhenSyntax`1.WhenClassHas(System.Type)">
|
2129
|
+
<summary>
|
2130
|
+
Indicates that the binding should be used only when the class being injected has
|
2131
|
+
an attribute of the specified type.
|
2132
|
+
</summary>
|
2133
|
+
<param name="attributeType">The type of attribute.</param>
|
2134
|
+
</member>
|
2135
|
+
<member name="M:Ninject.Syntax.IBindingWhenSyntax`1.WhenMemberHas(System.Type)">
|
2136
|
+
<summary>
|
2137
|
+
Indicates that the binding should be used only when the member being injected has
|
2138
|
+
an attribute of the specified type.
|
2139
|
+
</summary>
|
2140
|
+
<param name="attributeType">The type of attribute.</param>
|
2141
|
+
</member>
|
2142
|
+
<member name="M:Ninject.Syntax.IBindingWhenSyntax`1.WhenTargetHas(System.Type)">
|
2143
|
+
<summary>
|
2144
|
+
Indicates that the binding should be used only when the target being injected has
|
2145
|
+
an attribute of the specified type.
|
2146
|
+
</summary>
|
2147
|
+
<param name="attributeType">The type of attribute.</param>
|
2148
|
+
</member>
|
2149
|
+
<member name="M:Ninject.Syntax.IBindingWhenSyntax`1.WhenParentNamed(System.String)">
|
2150
|
+
<summary>
|
2151
|
+
Indicates that the binding should be used only when the service is being requested
|
2152
|
+
by a service bound with the specified name.
|
2153
|
+
</summary>
|
2154
|
+
<param name="name">The name to expect.</param>
|
2155
|
+
</member>
|
2156
|
+
<member name="T:Ninject.Syntax.IBindingInSyntax`1">
|
2157
|
+
<summary>
|
2158
|
+
Used to define the scope in which instances activated via a binding should be re-used.
|
2159
|
+
</summary>
|
2160
|
+
<typeparam name="T">The service being bound.</typeparam>
|
2161
|
+
</member>
|
2162
|
+
<member name="M:Ninject.Syntax.IBindingInSyntax`1.InSingletonScope">
|
2163
|
+
<summary>
|
2164
|
+
Indicates that only a single instance of the binding should be created, and then
|
2165
|
+
should be re-used for all subsequent requests.
|
2166
|
+
</summary>
|
2167
|
+
</member>
|
2168
|
+
<member name="M:Ninject.Syntax.IBindingInSyntax`1.InTransientScope">
|
2169
|
+
<summary>
|
2170
|
+
Indicates that instances activated via the binding should not be re-used, nor have
|
2171
|
+
their lifecycle managed by Ninject.
|
2172
|
+
</summary>
|
2173
|
+
</member>
|
2174
|
+
<member name="M:Ninject.Syntax.IBindingInSyntax`1.InThreadScope">
|
2175
|
+
<summary>
|
2176
|
+
Indicates that instances activated via the binding should be re-used within the same thread.
|
2177
|
+
</summary>
|
2178
|
+
</member>
|
2179
|
+
<member name="M:Ninject.Syntax.IBindingInSyntax`1.InScope(System.Func{Ninject.Activation.IContext,System.Object})">
|
2180
|
+
<summary>
|
2181
|
+
Indicates that instances activated via the binding should be re-used as long as the object
|
2182
|
+
returned by the provided callback remains alive (that is, has not been garbage collected).
|
2183
|
+
</summary>
|
2184
|
+
<param name="scope">The callback that returns the scope.</param>
|
2185
|
+
</member>
|
2186
|
+
<member name="T:Ninject.Syntax.IBindingNamedSyntax`1">
|
2187
|
+
<summary>
|
2188
|
+
Used to define the name of a binding.
|
2189
|
+
</summary>
|
2190
|
+
<typeparam name="T">The service being bound.</typeparam>
|
2191
|
+
</member>
|
2192
|
+
<member name="M:Ninject.Syntax.IBindingNamedSyntax`1.Named(System.String)">
|
2193
|
+
<summary>
|
2194
|
+
Indicates that the binding should be registered with the specified name. Names are not
|
2195
|
+
necessarily unique; multiple bindings for a given service may be registered with the same name.
|
2196
|
+
</summary>
|
2197
|
+
<param name="name">The name to give the binding.</param>
|
2198
|
+
</member>
|
2199
|
+
<member name="T:Ninject.Syntax.IBindingWithSyntax`1">
|
2200
|
+
<summary>
|
2201
|
+
Used to add additional information to a binding.
|
2202
|
+
</summary>
|
2203
|
+
<typeparam name="T">The service being bound.</typeparam>
|
2204
|
+
</member>
|
2205
|
+
<member name="M:Ninject.Syntax.IBindingWithSyntax`1.WithConstructorArgument(System.String,System.Object)">
|
2206
|
+
<summary>
|
2207
|
+
Indicates that the specified constructor argument should be overridden with the specified value.
|
2208
|
+
</summary>
|
2209
|
+
<param name="name">The name of the argument to override.</param>
|
2210
|
+
<param name="value">The value for the argument.</param>
|
2211
|
+
</member>
|
2212
|
+
<member name="M:Ninject.Syntax.IBindingWithSyntax`1.WithConstructorArgument(System.String,System.Func{Ninject.Activation.IContext,System.Object})">
|
2213
|
+
<summary>
|
2214
|
+
Indicates that the specified constructor argument should be overridden with the specified value.
|
2215
|
+
</summary>
|
2216
|
+
<param name="name">The name of the argument to override.</param>
|
2217
|
+
<param name="callback">The callback to invoke to get the value for the argument.</param>
|
2218
|
+
</member>
|
2219
|
+
<member name="M:Ninject.Syntax.IBindingWithSyntax`1.WithPropertyValue(System.String,System.Object)">
|
2220
|
+
<summary>
|
2221
|
+
Indicates that the specified property should be injected with the specified value.
|
2222
|
+
</summary>
|
2223
|
+
<param name="name">The name of the property to override.</param>
|
2224
|
+
<param name="value">The value for the property.</param>
|
2225
|
+
</member>
|
2226
|
+
<member name="M:Ninject.Syntax.IBindingWithSyntax`1.WithPropertyValue(System.String,System.Func{Ninject.Activation.IContext,System.Object})">
|
2227
|
+
<summary>
|
2228
|
+
Indicates that the specified property should be injected with the specified value.
|
2229
|
+
</summary>
|
2230
|
+
<param name="name">The name of the property to override.</param>
|
2231
|
+
<param name="callback">The callback to invoke to get the value for the property.</param>
|
2232
|
+
</member>
|
2233
|
+
<member name="M:Ninject.Syntax.IBindingWithSyntax`1.WithParameter(Ninject.Parameters.IParameter)">
|
2234
|
+
<summary>
|
2235
|
+
Adds a custom parameter to the binding.
|
2236
|
+
</summary>
|
2237
|
+
<param name="parameter">The parameter.</param>
|
2238
|
+
</member>
|
2239
|
+
<member name="M:Ninject.Syntax.IBindingWithSyntax`1.WithMetadata(System.String,System.Object)">
|
2240
|
+
<summary>
|
2241
|
+
Sets the value of a piece of metadata on the binding.
|
2242
|
+
</summary>
|
2243
|
+
<param name="key">The metadata key.</param>
|
2244
|
+
<param name="value">The metadata value.</param>
|
2245
|
+
</member>
|
2246
|
+
<member name="T:Ninject.Syntax.IBindingOnSyntax`1">
|
2247
|
+
<summary>
|
2248
|
+
Used to add additional actions to be performed during activation or deactivation of instances via a binding.
|
2249
|
+
</summary>
|
2250
|
+
<typeparam name="T">The service being bound.</typeparam>
|
2251
|
+
</member>
|
2252
|
+
<member name="M:Ninject.Syntax.IBindingOnSyntax`1.OnActivation(System.Action{`0})">
|
2253
|
+
<summary>
|
2254
|
+
Indicates that the specified callback should be invoked when instances are activated.
|
2255
|
+
</summary>
|
2256
|
+
<param name="action">The action callback.</param>
|
2257
|
+
</member>
|
2258
|
+
<member name="M:Ninject.Syntax.IBindingOnSyntax`1.OnDeactivation(System.Action{`0})">
|
2259
|
+
<summary>
|
2260
|
+
Indicates that the specified callback should be invoked when instances are deactivated.
|
2261
|
+
</summary>
|
2262
|
+
<param name="action">The action callback.</param>
|
2263
|
+
</member>
|
2264
|
+
<member name="T:Ninject.Syntax.IBindingInNamedWithOrOnSyntax`1">
|
2265
|
+
<summary>
|
2266
|
+
Used to set the scope, name, or add additional information or actions to a binding.
|
2267
|
+
</summary>
|
2268
|
+
<typeparam name="T">The service being bound.</typeparam>
|
2269
|
+
</member>
|
2270
|
+
<member name="T:Ninject.Syntax.IBindingNamedWithOrOnSyntax`1">
|
2271
|
+
<summary>
|
2272
|
+
Used to set the name, or add additional information or actions to a binding.
|
2273
|
+
</summary>
|
2274
|
+
<typeparam name="T">The service being bound.</typeparam>
|
2275
|
+
</member>
|
2276
|
+
<member name="T:Ninject.Syntax.IBindingWithOrOnSyntax`1">
|
2277
|
+
<summary>
|
2278
|
+
Used to add additional information or actions to a binding.
|
2279
|
+
</summary>
|
2280
|
+
<typeparam name="T">The service being bound.</typeparam>
|
2281
|
+
</member>
|
2282
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.#ctor(Ninject.Planning.Bindings.IBinding,Ninject.IKernel)">
|
2283
|
+
<summary>
|
2284
|
+
Initializes a new instance of the BindingBuilder<T> class.
|
2285
|
+
</summary>
|
2286
|
+
<param name="binding">The binding to build.</param>
|
2287
|
+
<param name="kernel">The kernel.</param>
|
2288
|
+
</member>
|
2289
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.ToSelf">
|
2290
|
+
<summary>
|
2291
|
+
Indicates that the service should be self-bound.
|
2292
|
+
</summary>
|
2293
|
+
</member>
|
2294
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.To``1">
|
2295
|
+
<summary>
|
2296
|
+
Indicates that the service should be bound to the specified implementation type.
|
2297
|
+
</summary>
|
2298
|
+
<typeparam name="TImplementation">The implementation type.</typeparam>
|
2299
|
+
</member>
|
2300
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.To(System.Type)">
|
2301
|
+
<summary>
|
2302
|
+
Indicates that the service should be bound to the specified implementation type.
|
2303
|
+
</summary>
|
2304
|
+
<param name="implementation">The implementation type.</param>
|
2305
|
+
</member>
|
2306
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.ToProvider``1">
|
2307
|
+
<summary>
|
2308
|
+
Indicates that the service should be bound to an instance of the specified provider type.
|
2309
|
+
The instance will be activated via the kernel when an instance of the service is activated.
|
2310
|
+
</summary>
|
2311
|
+
<typeparam name="TProvider">The type of provider to activate.</typeparam>
|
2312
|
+
</member>
|
2313
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.ToProvider(System.Type)">
|
2314
|
+
<summary>
|
2315
|
+
Indicates that the service should be bound to an instance of the specified provider type.
|
2316
|
+
The instance will be activated via the kernel when an instance of the service is activated.
|
2317
|
+
</summary>
|
2318
|
+
<param name="providerType">The type of provider to activate.</param>
|
2319
|
+
</member>
|
2320
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.ToProvider(Ninject.Activation.IProvider)">
|
2321
|
+
<summary>
|
2322
|
+
Indicates that the service should be bound to the specified provider.
|
2323
|
+
</summary>
|
2324
|
+
<param name="provider">The provider.</param>
|
2325
|
+
</member>
|
2326
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.ToMethod(System.Func{Ninject.Activation.IContext,`0})">
|
2327
|
+
<summary>
|
2328
|
+
Indicates that the service should be bound to the specified callback method.
|
2329
|
+
</summary>
|
2330
|
+
<param name="method">The method.</param>
|
2331
|
+
</member>
|
2332
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.ToConstant(`0)">
|
2333
|
+
<summary>
|
2334
|
+
Indicates that the service should be bound to the specified constant value.
|
2335
|
+
</summary>
|
2336
|
+
<param name="value">The constant value.</param>
|
2337
|
+
</member>
|
2338
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.When(System.Func{Ninject.Activation.IRequest,System.Boolean})">
|
2339
|
+
<summary>
|
2340
|
+
Indicates that the binding should be used only for requests that support the specified condition.
|
2341
|
+
</summary>
|
2342
|
+
<param name="condition">The condition.</param>
|
2343
|
+
</member>
|
2344
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.WhenInjectedInto``1">
|
2345
|
+
<summary>
|
2346
|
+
Indicates that the binding should be used only for injections on the specified type.
|
2347
|
+
</summary>
|
2348
|
+
<typeparam name="TParent">The type.</typeparam>
|
2349
|
+
</member>
|
2350
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.WhenInjectedInto(System.Type)">
|
2351
|
+
<summary>
|
2352
|
+
Indicates that the binding should be used only for injections on the specified type.
|
2353
|
+
</summary>
|
2354
|
+
<param name="parent">The type.</param>
|
2355
|
+
</member>
|
2356
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.WhenClassHas``1">
|
2357
|
+
<summary>
|
2358
|
+
Indicates that the binding should be used only when the class being injected has
|
2359
|
+
an attribute of the specified type.
|
2360
|
+
</summary>
|
2361
|
+
<typeparam name="TAttribute">The type of attribute.</typeparam>
|
2362
|
+
</member>
|
2363
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.WhenMemberHas``1">
|
2364
|
+
<summary>
|
2365
|
+
Indicates that the binding should be used only when the member being injected has
|
2366
|
+
an attribute of the specified type.
|
2367
|
+
</summary>
|
2368
|
+
<typeparam name="TAttribute">The type of attribute.</typeparam>
|
2369
|
+
</member>
|
2370
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.WhenTargetHas``1">
|
2371
|
+
<summary>
|
2372
|
+
Indicates that the binding should be used only when the target being injected has
|
2373
|
+
an attribute of the specified type.
|
2374
|
+
</summary>
|
2375
|
+
<typeparam name="TAttribute">The type of attribute.</typeparam>
|
2376
|
+
</member>
|
2377
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.WhenClassHas(System.Type)">
|
2378
|
+
<summary>
|
2379
|
+
Indicates that the binding should be used only when the class being injected has
|
2380
|
+
an attribute of the specified type.
|
2381
|
+
</summary>
|
2382
|
+
<param name="attributeType">The type of attribute.</param>
|
2383
|
+
</member>
|
2384
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.WhenMemberHas(System.Type)">
|
2385
|
+
<summary>
|
2386
|
+
Indicates that the binding should be used only when the member being injected has
|
2387
|
+
an attribute of the specified type.
|
2388
|
+
</summary>
|
2389
|
+
<param name="attributeType">The type of attribute.</param>
|
2390
|
+
</member>
|
2391
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.WhenTargetHas(System.Type)">
|
2392
|
+
<summary>
|
2393
|
+
Indicates that the binding should be used only when the target being injected has
|
2394
|
+
an attribute of the specified type.
|
2395
|
+
</summary>
|
2396
|
+
<param name="attributeType">The type of attribute.</param>
|
2397
|
+
</member>
|
2398
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.WhenParentNamed(System.String)">
|
2399
|
+
<summary>
|
2400
|
+
Indicates that the binding should be used only when the service is being requested
|
2401
|
+
by a service bound with the specified name.
|
2402
|
+
</summary>
|
2403
|
+
<param name="name">The name to expect.</param>
|
2404
|
+
</member>
|
2405
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.Named(System.String)">
|
2406
|
+
<summary>
|
2407
|
+
Indicates that the binding should be registered with the specified name. Names are not
|
2408
|
+
necessarily unique; multiple bindings for a given service may be registered with the same name.
|
2409
|
+
</summary>
|
2410
|
+
<param name="name">The name to give the binding.</param>
|
2411
|
+
</member>
|
2412
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.InSingletonScope">
|
2413
|
+
<summary>
|
2414
|
+
Indicates that only a single instance of the binding should be created, and then
|
2415
|
+
should be re-used for all subsequent requests.
|
2416
|
+
</summary>
|
2417
|
+
</member>
|
2418
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.InTransientScope">
|
2419
|
+
<summary>
|
2420
|
+
Indicates that instances activated via the binding should not be re-used, nor have
|
2421
|
+
their lifecycle managed by Ninject.
|
2422
|
+
</summary>
|
2423
|
+
</member>
|
2424
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.InThreadScope">
|
2425
|
+
<summary>
|
2426
|
+
Indicates that instances activated via the binding should be re-used within the same thread.
|
2427
|
+
</summary>
|
2428
|
+
</member>
|
2429
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.InScope(System.Func{Ninject.Activation.IContext,System.Object})">
|
2430
|
+
<summary>
|
2431
|
+
Indicates that instances activated via the binding should be re-used as long as the object
|
2432
|
+
returned by the provided callback remains alive (that is, has not been garbage collected).
|
2433
|
+
</summary>
|
2434
|
+
<param name="scope">The callback that returns the scope.</param>
|
2435
|
+
</member>
|
2436
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.WithConstructorArgument(System.String,System.Object)">
|
2437
|
+
<summary>
|
2438
|
+
Indicates that the specified constructor argument should be overridden with the specified value.
|
2439
|
+
</summary>
|
2440
|
+
<param name="name">The name of the argument to override.</param>
|
2441
|
+
<param name="value">The value for the argument.</param>
|
2442
|
+
</member>
|
2443
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.WithConstructorArgument(System.String,System.Func{Ninject.Activation.IContext,System.Object})">
|
2444
|
+
<summary>
|
2445
|
+
Indicates that the specified constructor argument should be overridden with the specified value.
|
2446
|
+
</summary>
|
2447
|
+
<param name="name">The name of the argument to override.</param>
|
2448
|
+
<param name="callback">The callback to invoke to get the value for the argument.</param>
|
2449
|
+
</member>
|
2450
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.WithPropertyValue(System.String,System.Object)">
|
2451
|
+
<summary>
|
2452
|
+
Indicates that the specified property should be injected with the specified value.
|
2453
|
+
</summary>
|
2454
|
+
<param name="name">The name of the property to override.</param>
|
2455
|
+
<param name="value">The value for the property.</param>
|
2456
|
+
</member>
|
2457
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.WithPropertyValue(System.String,System.Func{Ninject.Activation.IContext,System.Object})">
|
2458
|
+
<summary>
|
2459
|
+
Indicates that the specified property should be injected with the specified value.
|
2460
|
+
</summary>
|
2461
|
+
<param name="name">The name of the property to override.</param>
|
2462
|
+
<param name="callback">The callback to invoke to get the value for the property.</param>
|
2463
|
+
</member>
|
2464
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.WithParameter(Ninject.Parameters.IParameter)">
|
2465
|
+
<summary>
|
2466
|
+
Adds a custom parameter to the binding.
|
2467
|
+
</summary>
|
2468
|
+
<param name="parameter">The parameter.</param>
|
2469
|
+
</member>
|
2470
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.WithMetadata(System.String,System.Object)">
|
2471
|
+
<summary>
|
2472
|
+
Sets the value of a piece of metadata on the binding.
|
2473
|
+
</summary>
|
2474
|
+
<param name="key">The metadata key.</param>
|
2475
|
+
<param name="value">The metadata value.</param>
|
2476
|
+
</member>
|
2477
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.OnActivation(System.Action{`0})">
|
2478
|
+
<summary>
|
2479
|
+
Indicates that the specified callback should be invoked when instances are activated.
|
2480
|
+
</summary>
|
2481
|
+
<param name="action">The action callback.</param>
|
2482
|
+
</member>
|
2483
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.OnDeactivation(System.Action{`0})">
|
2484
|
+
<summary>
|
2485
|
+
Indicates that the specified callback should be invoked when instances are deactivated.
|
2486
|
+
</summary>
|
2487
|
+
<param name="action">The action callback.</param>
|
2488
|
+
</member>
|
2489
|
+
<member name="M:Ninject.Planning.Bindings.BindingBuilder`1.Ninject#Syntax#IFluentSyntax#GetType">
|
2490
|
+
<summary>
|
2491
|
+
Provides a root for the fluent syntax associated with an <see cref="P:Ninject.Planning.Bindings.BindingBuilder`1.Binding"/>.
|
2492
|
+
</summary>
|
2493
|
+
</member>
|
2494
|
+
<member name="P:Ninject.Planning.Bindings.BindingBuilder`1.Binding">
|
2495
|
+
<summary>
|
2496
|
+
Gets the binding being built.
|
2497
|
+
</summary>
|
2498
|
+
</member>
|
2499
|
+
<member name="P:Ninject.Planning.Bindings.BindingBuilder`1.Kernel">
|
2500
|
+
<summary>
|
2501
|
+
Gets the kernel.
|
2502
|
+
</summary>
|
2503
|
+
</member>
|
2504
|
+
<member name="T:Ninject.Planning.Bindings.BindingMetadata">
|
2505
|
+
<summary>
|
2506
|
+
Additional information available about a binding, which can be used in constraints
|
2507
|
+
to select bindings to use in activation.
|
2508
|
+
</summary>
|
2509
|
+
</member>
|
2510
|
+
<member name="T:Ninject.Planning.Bindings.IBindingMetadata">
|
2511
|
+
<summary>
|
2512
|
+
Additional information available about a binding, which can be used in constraints
|
2513
|
+
to select bindings to use in activation.
|
2514
|
+
</summary>
|
2515
|
+
</member>
|
2516
|
+
<member name="M:Ninject.Planning.Bindings.IBindingMetadata.Has(System.String)">
|
2517
|
+
<summary>
|
2518
|
+
Determines whether a piece of metadata with the specified key has been defined.
|
2519
|
+
</summary>
|
2520
|
+
<param name="key">The metadata key.</param>
|
2521
|
+
<returns><c>True</c> if such a piece of metadata exists; otherwise, <c>false</c>.</returns>
|
2522
|
+
</member>
|
2523
|
+
<member name="M:Ninject.Planning.Bindings.IBindingMetadata.Get``1(System.String)">
|
2524
|
+
<summary>
|
2525
|
+
Gets the value of metadata defined with the specified key, cast to the specified type.
|
2526
|
+
</summary>
|
2527
|
+
<typeparam name="T">The type of value to expect.</typeparam>
|
2528
|
+
<param name="key">The metadata key.</param>
|
2529
|
+
<returns>The metadata value.</returns>
|
2530
|
+
</member>
|
2531
|
+
<member name="M:Ninject.Planning.Bindings.IBindingMetadata.Get``1(System.String,``0)">
|
2532
|
+
<summary>
|
2533
|
+
Gets the value of metadata defined with the specified key.
|
2534
|
+
</summary>
|
2535
|
+
<param name="key">The metadata key.</param>
|
2536
|
+
<param name="defaultValue">The value to return if the binding has no metadata set with the specified key.</param>
|
2537
|
+
<returns>The metadata value, or the default value if none was set.</returns>
|
2538
|
+
</member>
|
2539
|
+
<member name="M:Ninject.Planning.Bindings.IBindingMetadata.Set(System.String,System.Object)">
|
2540
|
+
<summary>
|
2541
|
+
Sets the value of a piece of metadata.
|
2542
|
+
</summary>
|
2543
|
+
<param name="key">The metadata key.</param>
|
2544
|
+
<param name="value">The metadata value.</param>
|
2545
|
+
</member>
|
2546
|
+
<member name="P:Ninject.Planning.Bindings.IBindingMetadata.Name">
|
2547
|
+
<summary>
|
2548
|
+
Gets or sets the binding's name.
|
2549
|
+
</summary>
|
2550
|
+
</member>
|
2551
|
+
<member name="M:Ninject.Planning.Bindings.BindingMetadata.Has(System.String)">
|
2552
|
+
<summary>
|
2553
|
+
Determines whether a piece of metadata with the specified key has been defined.
|
2554
|
+
</summary>
|
2555
|
+
<param name="key">The metadata key.</param>
|
2556
|
+
<returns><c>True</c> if such a piece of metadata exists; otherwise, <c>false</c>.</returns>
|
2557
|
+
</member>
|
2558
|
+
<member name="M:Ninject.Planning.Bindings.BindingMetadata.Get``1(System.String)">
|
2559
|
+
<summary>
|
2560
|
+
Gets the value of metadata defined with the specified key, cast to the specified type.
|
2561
|
+
</summary>
|
2562
|
+
<typeparam name="T">The type of value to expect.</typeparam>
|
2563
|
+
<param name="key">The metadata key.</param>
|
2564
|
+
<returns>The metadata value.</returns>
|
2565
|
+
</member>
|
2566
|
+
<member name="M:Ninject.Planning.Bindings.BindingMetadata.Get``1(System.String,``0)">
|
2567
|
+
<summary>
|
2568
|
+
Gets the value of metadata defined with the specified key.
|
2569
|
+
</summary>
|
2570
|
+
<param name="key">The metadata key.</param>
|
2571
|
+
<param name="defaultValue">The value to return if the binding has no metadata set with the specified key.</param>
|
2572
|
+
<returns>The metadata value, or the default value if none was set.</returns>
|
2573
|
+
</member>
|
2574
|
+
<member name="M:Ninject.Planning.Bindings.BindingMetadata.Set(System.String,System.Object)">
|
2575
|
+
<summary>
|
2576
|
+
Sets the value of a piece of metadata.
|
2577
|
+
</summary>
|
2578
|
+
<param name="key">The metadata key.</param>
|
2579
|
+
<param name="value">The metadata value.</param>
|
2580
|
+
</member>
|
2581
|
+
<member name="P:Ninject.Planning.Bindings.BindingMetadata.Name">
|
2582
|
+
<summary>
|
2583
|
+
Gets or sets the binding's name.
|
2584
|
+
</summary>
|
2585
|
+
</member>
|
2586
|
+
<member name="T:Ninject.Planning.Bindings.BindingTarget">
|
2587
|
+
<summary>
|
2588
|
+
Describes the target of a binding.
|
2589
|
+
</summary>
|
2590
|
+
</member>
|
2591
|
+
<member name="F:Ninject.Planning.Bindings.BindingTarget.Self">
|
2592
|
+
<summary>
|
2593
|
+
Indicates that the binding is from a type to itself.
|
2594
|
+
</summary>
|
2595
|
+
</member>
|
2596
|
+
<member name="F:Ninject.Planning.Bindings.BindingTarget.Type">
|
2597
|
+
<summary>
|
2598
|
+
Indicates that the binding is from one type to another.
|
2599
|
+
</summary>
|
2600
|
+
</member>
|
2601
|
+
<member name="F:Ninject.Planning.Bindings.BindingTarget.Provider">
|
2602
|
+
<summary>
|
2603
|
+
Indicates that the binding is from a type to a provider.
|
2604
|
+
</summary>
|
2605
|
+
</member>
|
2606
|
+
<member name="F:Ninject.Planning.Bindings.BindingTarget.Method">
|
2607
|
+
<summary>
|
2608
|
+
Indicates that the binding is from a type to a callback method.
|
2609
|
+
</summary>
|
2610
|
+
</member>
|
2611
|
+
<member name="F:Ninject.Planning.Bindings.BindingTarget.Constant">
|
2612
|
+
<summary>
|
2613
|
+
Indicates that the binding is from a type to a constant value.
|
2614
|
+
</summary>
|
2615
|
+
</member>
|
2616
|
+
<member name="T:Ninject.Planning.Directives.ConstructorInjectionDirective">
|
2617
|
+
<summary>
|
2618
|
+
Describes the injection of a constructor.
|
2619
|
+
</summary>
|
2620
|
+
</member>
|
2621
|
+
<member name="T:Ninject.Planning.Directives.MethodInjectionDirectiveBase`2">
|
2622
|
+
<summary>
|
2623
|
+
Describes the injection of a method or constructor.
|
2624
|
+
</summary>
|
2625
|
+
</member>
|
2626
|
+
<member name="T:Ninject.Planning.Directives.IDirective">
|
2627
|
+
<summary>
|
2628
|
+
A piece of information used in an <see cref="T:Ninject.Planning.IPlan"/>. (Just a marker.)
|
2629
|
+
</summary>
|
2630
|
+
</member>
|
2631
|
+
<member name="M:Ninject.Planning.Directives.MethodInjectionDirectiveBase`2.#ctor(`0,`1)">
|
2632
|
+
<summary>
|
2633
|
+
Initializes a new instance of the MethodInjectionDirectiveBase<TMethod, TInjector> class.
|
2634
|
+
</summary>
|
2635
|
+
<param name="method">The method this directive represents.</param>
|
2636
|
+
<param name="injector">The injector that will be triggered.</param>
|
2637
|
+
</member>
|
2638
|
+
<member name="M:Ninject.Planning.Directives.MethodInjectionDirectiveBase`2.CreateTargetsFromParameters(`0)">
|
2639
|
+
<summary>
|
2640
|
+
Creates targets for the parameters of the method.
|
2641
|
+
</summary>
|
2642
|
+
<param name="method">The method.</param>
|
2643
|
+
<returns>The targets for the method's parameters.</returns>
|
2644
|
+
</member>
|
2645
|
+
<member name="P:Ninject.Planning.Directives.MethodInjectionDirectiveBase`2.Injector">
|
2646
|
+
<summary>
|
2647
|
+
Gets or sets the injector that will be triggered.
|
2648
|
+
</summary>
|
2649
|
+
</member>
|
2650
|
+
<member name="P:Ninject.Planning.Directives.MethodInjectionDirectiveBase`2.Targets">
|
2651
|
+
<summary>
|
2652
|
+
Gets or sets the targets for the directive.
|
2653
|
+
</summary>
|
2654
|
+
</member>
|
2655
|
+
<member name="M:Ninject.Planning.Directives.ConstructorInjectionDirective.#ctor(System.Reflection.ConstructorInfo,Ninject.Injection.ConstructorInjector)">
|
2656
|
+
<summary>
|
2657
|
+
Initializes a new instance of the <see cref="T:Ninject.Planning.Directives.ConstructorInjectionDirective"/> class.
|
2658
|
+
</summary>
|
2659
|
+
<param name="constructor">The constructor described by the directive.</param>
|
2660
|
+
<param name="injector">The injector that will be triggered.</param>
|
2661
|
+
</member>
|
2662
|
+
<member name="P:Ninject.Planning.Directives.ConstructorInjectionDirective.Constructor">
|
2663
|
+
<summary>
|
2664
|
+
The base .ctor definition.
|
2665
|
+
</summary>
|
2666
|
+
</member>
|
2667
|
+
<member name="T:Ninject.Planning.Directives.MethodInjectionDirective">
|
2668
|
+
<summary>
|
2669
|
+
Describes the injection of a method.
|
2670
|
+
</summary>
|
2671
|
+
</member>
|
2672
|
+
<member name="M:Ninject.Planning.Directives.MethodInjectionDirective.#ctor(System.Reflection.MethodInfo,Ninject.Injection.MethodInjector)">
|
2673
|
+
<summary>
|
2674
|
+
Initializes a new instance of the <see cref="T:Ninject.Planning.Directives.MethodInjectionDirective"/> class.
|
2675
|
+
</summary>
|
2676
|
+
<param name="method">The method described by the directive.</param>
|
2677
|
+
<param name="injector">The injector that will be triggered.</param>
|
2678
|
+
</member>
|
2679
|
+
<member name="T:Ninject.Planning.Directives.PropertyInjectionDirective">
|
2680
|
+
<summary>
|
2681
|
+
Describes the injection of a property.
|
2682
|
+
</summary>
|
2683
|
+
</member>
|
2684
|
+
<member name="M:Ninject.Planning.Directives.PropertyInjectionDirective.#ctor(System.Reflection.PropertyInfo,Ninject.Injection.PropertyInjector)">
|
2685
|
+
<summary>
|
2686
|
+
Initializes a new instance of the <see cref="T:Ninject.Planning.Directives.PropertyInjectionDirective"/> class.
|
2687
|
+
</summary>
|
2688
|
+
<param name="member">The member the directive describes.</param>
|
2689
|
+
<param name="injector">The injector that will be triggered.</param>
|
2690
|
+
</member>
|
2691
|
+
<member name="M:Ninject.Planning.Directives.PropertyInjectionDirective.CreateTarget(System.Reflection.PropertyInfo)">
|
2692
|
+
<summary>
|
2693
|
+
Creates a target for the property.
|
2694
|
+
</summary>
|
2695
|
+
<param name="propertyInfo">The property.</param>
|
2696
|
+
<returns>The target for the property.</returns>
|
2697
|
+
</member>
|
2698
|
+
<member name="P:Ninject.Planning.Directives.PropertyInjectionDirective.Injector">
|
2699
|
+
<summary>
|
2700
|
+
Gets or sets the injector that will be triggered.
|
2701
|
+
</summary>
|
2702
|
+
</member>
|
2703
|
+
<member name="P:Ninject.Planning.Directives.PropertyInjectionDirective.Target">
|
2704
|
+
<summary>
|
2705
|
+
Gets or sets the injection target for the directive.
|
2706
|
+
</summary>
|
2707
|
+
</member>
|
2708
|
+
<member name="T:Ninject.Planning.Strategies.ConstructorReflectionStrategy">
|
2709
|
+
<summary>
|
2710
|
+
Adds a directive to plans indicating which constructor should be injected during activation.
|
2711
|
+
</summary>
|
2712
|
+
</member>
|
2713
|
+
<member name="T:Ninject.Planning.Strategies.IPlanningStrategy">
|
2714
|
+
<summary>
|
2715
|
+
Contributes to the generation of a <see cref="T:Ninject.Planning.IPlan"/>.
|
2716
|
+
</summary>
|
2717
|
+
</member>
|
2718
|
+
<member name="M:Ninject.Planning.Strategies.IPlanningStrategy.Execute(Ninject.Planning.IPlan)">
|
2719
|
+
<summary>
|
2720
|
+
Contributes to the specified plan.
|
2721
|
+
</summary>
|
2722
|
+
<param name="plan">The plan that is being generated.</param>
|
2723
|
+
</member>
|
2724
|
+
<member name="M:Ninject.Planning.Strategies.ConstructorReflectionStrategy.#ctor(Ninject.Selection.ISelector,Ninject.Injection.IInjectorFactory)">
|
2725
|
+
<summary>
|
2726
|
+
Initializes a new instance of the <see cref="T:Ninject.Planning.Strategies.ConstructorReflectionStrategy"/> class.
|
2727
|
+
</summary>
|
2728
|
+
<param name="selector">The selector component.</param>
|
2729
|
+
<param name="injectorFactory">The injector factory component.</param>
|
2730
|
+
</member>
|
2731
|
+
<member name="M:Ninject.Planning.Strategies.ConstructorReflectionStrategy.Execute(Ninject.Planning.IPlan)">
|
2732
|
+
<summary>
|
2733
|
+
Adds a <see cref="T:Ninject.Planning.Directives.ConstructorInjectionDirective"/> to the plan for the constructor
|
2734
|
+
that should be injected.
|
2735
|
+
</summary>
|
2736
|
+
<param name="plan">The plan that is being generated.</param>
|
2737
|
+
</member>
|
2738
|
+
<member name="P:Ninject.Planning.Strategies.ConstructorReflectionStrategy.Selector">
|
2739
|
+
<summary>
|
2740
|
+
Gets the selector component.
|
2741
|
+
</summary>
|
2742
|
+
</member>
|
2743
|
+
<member name="P:Ninject.Planning.Strategies.ConstructorReflectionStrategy.InjectorFactory">
|
2744
|
+
<summary>
|
2745
|
+
Gets the injector factory component.
|
2746
|
+
</summary>
|
2747
|
+
</member>
|
2748
|
+
<member name="T:Ninject.Planning.Strategies.MethodReflectionStrategy">
|
2749
|
+
<summary>
|
2750
|
+
Adds directives to plans indicating which methods should be injected during activation.
|
2751
|
+
</summary>
|
2752
|
+
</member>
|
2753
|
+
<member name="M:Ninject.Planning.Strategies.MethodReflectionStrategy.#ctor(Ninject.Selection.ISelector,Ninject.Injection.IInjectorFactory)">
|
2754
|
+
<summary>
|
2755
|
+
Initializes a new instance of the <see cref="T:Ninject.Planning.Strategies.MethodReflectionStrategy"/> class.
|
2756
|
+
</summary>
|
2757
|
+
<param name="selector">The selector component.</param>
|
2758
|
+
<param name="injectorFactory">The injector factory component.</param>
|
2759
|
+
</member>
|
2760
|
+
<member name="M:Ninject.Planning.Strategies.MethodReflectionStrategy.Execute(Ninject.Planning.IPlan)">
|
2761
|
+
<summary>
|
2762
|
+
Adds a <see cref="T:Ninject.Planning.Directives.MethodInjectionDirective"/> to the plan for each method
|
2763
|
+
that should be injected.
|
2764
|
+
</summary>
|
2765
|
+
<param name="plan">The plan that is being generated.</param>
|
2766
|
+
</member>
|
2767
|
+
<member name="P:Ninject.Planning.Strategies.MethodReflectionStrategy.Selector">
|
2768
|
+
<summary>
|
2769
|
+
Gets the selector component.
|
2770
|
+
</summary>
|
2771
|
+
</member>
|
2772
|
+
<member name="P:Ninject.Planning.Strategies.MethodReflectionStrategy.InjectorFactory">
|
2773
|
+
<summary>
|
2774
|
+
Gets the injector factory component.
|
2775
|
+
</summary>
|
2776
|
+
</member>
|
2777
|
+
<member name="T:Ninject.Planning.Strategies.PropertyReflectionStrategy">
|
2778
|
+
<summary>
|
2779
|
+
Adds directives to plans indicating which properties should be injected during activation.
|
2780
|
+
</summary>
|
2781
|
+
</member>
|
2782
|
+
<member name="M:Ninject.Planning.Strategies.PropertyReflectionStrategy.#ctor(Ninject.Selection.ISelector,Ninject.Injection.IInjectorFactory)">
|
2783
|
+
<summary>
|
2784
|
+
Initializes a new instance of the <see cref="T:Ninject.Planning.Strategies.PropertyReflectionStrategy"/> class.
|
2785
|
+
</summary>
|
2786
|
+
<param name="selector">The selector component.</param>
|
2787
|
+
<param name="injectorFactory">The injector factory component.</param>
|
2788
|
+
</member>
|
2789
|
+
<member name="M:Ninject.Planning.Strategies.PropertyReflectionStrategy.Execute(Ninject.Planning.IPlan)">
|
2790
|
+
<summary>
|
2791
|
+
Adds a <see cref="T:Ninject.Planning.Directives.PropertyInjectionDirective"/> to the plan for each property
|
2792
|
+
that should be injected.
|
2793
|
+
</summary>
|
2794
|
+
<param name="plan">The plan that is being generated.</param>
|
2795
|
+
</member>
|
2796
|
+
<member name="P:Ninject.Planning.Strategies.PropertyReflectionStrategy.Selector">
|
2797
|
+
<summary>
|
2798
|
+
Gets the selector component.
|
2799
|
+
</summary>
|
2800
|
+
</member>
|
2801
|
+
<member name="P:Ninject.Planning.Strategies.PropertyReflectionStrategy.InjectorFactory">
|
2802
|
+
<summary>
|
2803
|
+
Gets the injector factory component.
|
2804
|
+
</summary>
|
2805
|
+
</member>
|
2806
|
+
<member name="T:Ninject.Planning.Targets.ITarget">
|
2807
|
+
<summary>
|
2808
|
+
Represents a site on a type where a value will be injected.
|
2809
|
+
</summary>
|
2810
|
+
</member>
|
2811
|
+
<member name="M:Ninject.Planning.Targets.ITarget.ResolveWithin(Ninject.Activation.IContext)">
|
2812
|
+
<summary>
|
2813
|
+
Resolves a value for the target within the specified parent context.
|
2814
|
+
</summary>
|
2815
|
+
<param name="parent">The parent context.</param>
|
2816
|
+
<returns>The resolved value.</returns>
|
2817
|
+
</member>
|
2818
|
+
<member name="P:Ninject.Planning.Targets.ITarget.Type">
|
2819
|
+
<summary>
|
2820
|
+
Gets the type of the target.
|
2821
|
+
</summary>
|
2822
|
+
</member>
|
2823
|
+
<member name="P:Ninject.Planning.Targets.ITarget.Name">
|
2824
|
+
<summary>
|
2825
|
+
Gets the name of the target.
|
2826
|
+
</summary>
|
2827
|
+
</member>
|
2828
|
+
<member name="P:Ninject.Planning.Targets.ITarget.Member">
|
2829
|
+
<summary>
|
2830
|
+
Gets the member that contains the target.
|
2831
|
+
</summary>
|
2832
|
+
</member>
|
2833
|
+
<member name="P:Ninject.Planning.Targets.ITarget.Constraint">
|
2834
|
+
<summary>
|
2835
|
+
Gets the constraint defined on the target.
|
2836
|
+
</summary>
|
2837
|
+
</member>
|
2838
|
+
<member name="P:Ninject.Planning.Targets.ITarget.IsOptional">
|
2839
|
+
<summary>
|
2840
|
+
Gets a value indicating whether the target represents an optional dependency.
|
2841
|
+
</summary>
|
2842
|
+
</member>
|
2843
|
+
<member name="T:Ninject.Planning.Targets.ParameterTarget">
|
2844
|
+
<summary>
|
2845
|
+
Represents an injection target for a <see cref="T:System.Reflection.ParameterInfo"/>.
|
2846
|
+
</summary>
|
2847
|
+
</member>
|
2848
|
+
<member name="T:Ninject.Planning.Targets.Target`1">
|
2849
|
+
<summary>
|
2850
|
+
Represents a site on a type where a value can be injected.
|
2851
|
+
</summary>
|
2852
|
+
<typeparam name="T">The type of site this represents.</typeparam>
|
2853
|
+
</member>
|
2854
|
+
<member name="M:Ninject.Planning.Targets.Target`1.#ctor(System.Reflection.MemberInfo,`0)">
|
2855
|
+
<summary>
|
2856
|
+
Initializes a new instance of the Target<T> class.
|
2857
|
+
</summary>
|
2858
|
+
<param name="member">The member that contains the target.</param>
|
2859
|
+
<param name="site">The site represented by the target.</param>
|
2860
|
+
</member>
|
2861
|
+
<member name="M:Ninject.Planning.Targets.Target`1.GetCustomAttributes(System.Type,System.Boolean)">
|
2862
|
+
<summary>
|
2863
|
+
Returns an array of custom attributes of a specified type defined on the target.
|
2864
|
+
</summary>
|
2865
|
+
<param name="attributeType">The type of attribute to search for.</param>
|
2866
|
+
<param name="inherit">Whether to look up the hierarchy chain for inherited custom attributes.</param>
|
2867
|
+
<returns>An array of custom attributes of the specified type.</returns>
|
2868
|
+
</member>
|
2869
|
+
<member name="M:Ninject.Planning.Targets.Target`1.GetCustomAttributes(System.Boolean)">
|
2870
|
+
<summary>
|
2871
|
+
Returns an array of custom attributes defined on the target.
|
2872
|
+
</summary>
|
2873
|
+
<param name="inherit">Whether to look up the hierarchy chain for inherited custom attributes.</param>
|
2874
|
+
<returns>An array of custom attributes.</returns>
|
2875
|
+
</member>
|
2876
|
+
<member name="M:Ninject.Planning.Targets.Target`1.IsDefined(System.Type,System.Boolean)">
|
2877
|
+
<summary>
|
2878
|
+
Returns a value indicating whether an attribute of the specified type is defined on the target.
|
2879
|
+
</summary>
|
2880
|
+
<param name="attributeType">The type of attribute to search for.</param>
|
2881
|
+
<param name="inherit">Whether to look up the hierarchy chain for inherited custom attributes.</param>
|
2882
|
+
<returns><c>True</c> if such an attribute is defined; otherwise <c>false</c>.</returns>
|
2883
|
+
</member>
|
2884
|
+
<member name="M:Ninject.Planning.Targets.Target`1.ResolveWithin(Ninject.Activation.IContext)">
|
2885
|
+
<summary>
|
2886
|
+
Resolves a value for the target within the specified parent context.
|
2887
|
+
</summary>
|
2888
|
+
<param name="parent">The parent context.</param>
|
2889
|
+
<returns>The resolved value.</returns>
|
2890
|
+
</member>
|
2891
|
+
<member name="M:Ninject.Planning.Targets.Target`1.GetValues(System.Type,Ninject.Activation.IContext)">
|
2892
|
+
<summary>
|
2893
|
+
Gets the value(s) that should be injected into the target.
|
2894
|
+
</summary>
|
2895
|
+
<param name="service">The service that the target is requesting.</param>
|
2896
|
+
<param name="parent">The parent context in which the target is being injected.</param>
|
2897
|
+
<returns>A series of values that are available for injection.</returns>
|
2898
|
+
</member>
|
2899
|
+
<member name="M:Ninject.Planning.Targets.Target`1.ReadOptionalFromTarget">
|
2900
|
+
<summary>
|
2901
|
+
Reads whether the target represents an optional dependency.
|
2902
|
+
</summary>
|
2903
|
+
<returns><see langword="True"/> if it is optional; otherwise <see langword="false"/>.</returns>
|
2904
|
+
</member>
|
2905
|
+
<member name="M:Ninject.Planning.Targets.Target`1.ReadConstraintFromTarget">
|
2906
|
+
<summary>
|
2907
|
+
Reads the resolution constraint from target.
|
2908
|
+
</summary>
|
2909
|
+
<returns>The resolution constraint.</returns>
|
2910
|
+
</member>
|
2911
|
+
<member name="P:Ninject.Planning.Targets.Target`1.Member">
|
2912
|
+
<summary>
|
2913
|
+
Gets the member that contains the target.
|
2914
|
+
</summary>
|
2915
|
+
</member>
|
2916
|
+
<member name="P:Ninject.Planning.Targets.Target`1.Site">
|
2917
|
+
<summary>
|
2918
|
+
Gets or sets the site (property, parameter, etc.) represented by the target.
|
2919
|
+
</summary>
|
2920
|
+
</member>
|
2921
|
+
<member name="P:Ninject.Planning.Targets.Target`1.Name">
|
2922
|
+
<summary>
|
2923
|
+
Gets the name of the target.
|
2924
|
+
</summary>
|
2925
|
+
</member>
|
2926
|
+
<member name="P:Ninject.Planning.Targets.Target`1.Type">
|
2927
|
+
<summary>
|
2928
|
+
Gets the type of the target.
|
2929
|
+
</summary>
|
2930
|
+
</member>
|
2931
|
+
<member name="P:Ninject.Planning.Targets.Target`1.Constraint">
|
2932
|
+
<summary>
|
2933
|
+
Gets the constraint defined on the target.
|
2934
|
+
</summary>
|
2935
|
+
</member>
|
2936
|
+
<member name="P:Ninject.Planning.Targets.Target`1.IsOptional">
|
2937
|
+
<summary>
|
2938
|
+
Gets a value indicating whether the target represents an optional dependency.
|
2939
|
+
</summary>
|
2940
|
+
</member>
|
2941
|
+
<member name="M:Ninject.Planning.Targets.ParameterTarget.#ctor(System.Reflection.MethodBase,System.Reflection.ParameterInfo)">
|
2942
|
+
<summary>
|
2943
|
+
Initializes a new instance of the <see cref="T:Ninject.Planning.Targets.ParameterTarget"/> class.
|
2944
|
+
</summary>
|
2945
|
+
<param name="method">The method that defines the parameter.</param>
|
2946
|
+
<param name="site">The parameter that this target represents.</param>
|
2947
|
+
</member>
|
2948
|
+
<member name="P:Ninject.Planning.Targets.ParameterTarget.Name">
|
2949
|
+
<summary>
|
2950
|
+
Gets the name of the target.
|
2951
|
+
</summary>
|
2952
|
+
</member>
|
2953
|
+
<member name="P:Ninject.Planning.Targets.ParameterTarget.Type">
|
2954
|
+
<summary>
|
2955
|
+
Gets the type of the target.
|
2956
|
+
</summary>
|
2957
|
+
</member>
|
2958
|
+
<member name="T:Ninject.Planning.Targets.PropertyTarget">
|
2959
|
+
<summary>
|
2960
|
+
Represents an injection target for a <see cref="T:System.Reflection.PropertyInfo"/>.
|
2961
|
+
</summary>
|
2962
|
+
</member>
|
2963
|
+
<member name="M:Ninject.Planning.Targets.PropertyTarget.#ctor(System.Reflection.PropertyInfo)">
|
2964
|
+
<summary>
|
2965
|
+
Initializes a new instance of the <see cref="T:Ninject.Planning.Targets.PropertyTarget"/> class.
|
2966
|
+
</summary>
|
2967
|
+
<param name="site">The property that this target represents.</param>
|
2968
|
+
</member>
|
2969
|
+
<member name="P:Ninject.Planning.Targets.PropertyTarget.Name">
|
2970
|
+
<summary>
|
2971
|
+
Gets the name of the target.
|
2972
|
+
</summary>
|
2973
|
+
</member>
|
2974
|
+
<member name="P:Ninject.Planning.Targets.PropertyTarget.Type">
|
2975
|
+
<summary>
|
2976
|
+
Gets the type of the target.
|
2977
|
+
</summary>
|
2978
|
+
</member>
|
2979
|
+
<member name="T:Ninject.Planning.IPlan">
|
2980
|
+
<summary>
|
2981
|
+
Describes the means by which a type should be activated.
|
2982
|
+
</summary>
|
2983
|
+
</member>
|
2984
|
+
<member name="M:Ninject.Planning.IPlan.Add(Ninject.Planning.Directives.IDirective)">
|
2985
|
+
<summary>
|
2986
|
+
Adds the specified directive to the plan.
|
2987
|
+
</summary>
|
2988
|
+
<param name="directive">The directive.</param>
|
2989
|
+
</member>
|
2990
|
+
<member name="M:Ninject.Planning.IPlan.Has``1">
|
2991
|
+
<summary>
|
2992
|
+
Determines whether the plan contains one or more directives of the specified type.
|
2993
|
+
</summary>
|
2994
|
+
<typeparam name="TDirective">The type of directive.</typeparam>
|
2995
|
+
<returns><c>True</c> if the plan has one or more directives of the type; otherwise, <c>false</c>.</returns>
|
2996
|
+
</member>
|
2997
|
+
<member name="M:Ninject.Planning.IPlan.GetOne``1">
|
2998
|
+
<summary>
|
2999
|
+
Gets the first directive of the specified type from the plan.
|
3000
|
+
</summary>
|
3001
|
+
<typeparam name="TDirective">The type of directive.</typeparam>
|
3002
|
+
<returns>The first directive, or <see langword="null"/> if no matching directives exist.</returns>
|
3003
|
+
</member>
|
3004
|
+
<member name="M:Ninject.Planning.IPlan.GetAll``1">
|
3005
|
+
<summary>
|
3006
|
+
Gets all directives of the specified type that exist in the plan.
|
3007
|
+
</summary>
|
3008
|
+
<typeparam name="TDirective">The type of directive.</typeparam>
|
3009
|
+
<returns>A series of directives of the specified type.</returns>
|
3010
|
+
</member>
|
3011
|
+
<member name="P:Ninject.Planning.IPlan.Type">
|
3012
|
+
<summary>
|
3013
|
+
Gets the type that the plan describes.
|
3014
|
+
</summary>
|
3015
|
+
</member>
|
3016
|
+
<member name="T:Ninject.Planning.IPlanner">
|
3017
|
+
<summary>
|
3018
|
+
Generates plans for how to activate instances.
|
3019
|
+
</summary>
|
3020
|
+
</member>
|
3021
|
+
<member name="M:Ninject.Planning.IPlanner.GetPlan(System.Type)">
|
3022
|
+
<summary>
|
3023
|
+
Gets or creates an activation plan for the specified type.
|
3024
|
+
</summary>
|
3025
|
+
<param name="type">The type for which a plan should be created.</param>
|
3026
|
+
<returns>The type's activation plan.</returns>
|
3027
|
+
</member>
|
3028
|
+
<member name="P:Ninject.Planning.IPlanner.Strategies">
|
3029
|
+
<summary>
|
3030
|
+
Gets the strategies that contribute to the planning process.
|
3031
|
+
</summary>
|
3032
|
+
</member>
|
3033
|
+
<member name="T:Ninject.Planning.Plan">
|
3034
|
+
<summary>
|
3035
|
+
Describes the means by which a type should be activated.
|
3036
|
+
</summary>
|
3037
|
+
</member>
|
3038
|
+
<member name="M:Ninject.Planning.Plan.#ctor(System.Type)">
|
3039
|
+
<summary>
|
3040
|
+
Initializes a new instance of the <see cref="T:Ninject.Planning.Plan"/> class.
|
3041
|
+
</summary>
|
3042
|
+
<param name="type">The type the plan describes.</param>
|
3043
|
+
</member>
|
3044
|
+
<member name="M:Ninject.Planning.Plan.Add(Ninject.Planning.Directives.IDirective)">
|
3045
|
+
<summary>
|
3046
|
+
Adds the specified directive to the plan.
|
3047
|
+
</summary>
|
3048
|
+
<param name="directive">The directive.</param>
|
3049
|
+
</member>
|
3050
|
+
<member name="M:Ninject.Planning.Plan.Has``1">
|
3051
|
+
<summary>
|
3052
|
+
Determines whether the plan contains one or more directives of the specified type.
|
3053
|
+
</summary>
|
3054
|
+
<typeparam name="TDirective">The type of directive.</typeparam>
|
3055
|
+
<returns><c>True</c> if the plan has one or more directives of the type; otherwise, <c>false</c>.</returns>
|
3056
|
+
</member>
|
3057
|
+
<member name="M:Ninject.Planning.Plan.GetOne``1">
|
3058
|
+
<summary>
|
3059
|
+
Gets the first directive of the specified type from the plan.
|
3060
|
+
</summary>
|
3061
|
+
<typeparam name="TDirective">The type of directive.</typeparam>
|
3062
|
+
<returns>The first directive, or <see langword="null"/> if no matching directives exist.</returns>
|
3063
|
+
</member>
|
3064
|
+
<member name="M:Ninject.Planning.Plan.GetAll``1">
|
3065
|
+
<summary>
|
3066
|
+
Gets all directives of the specified type that exist in the plan.
|
3067
|
+
</summary>
|
3068
|
+
<typeparam name="TDirective">The type of directive.</typeparam>
|
3069
|
+
<returns>A series of directives of the specified type.</returns>
|
3070
|
+
</member>
|
3071
|
+
<member name="P:Ninject.Planning.Plan.Type">
|
3072
|
+
<summary>
|
3073
|
+
Gets the type that the plan describes.
|
3074
|
+
</summary>
|
3075
|
+
</member>
|
3076
|
+
<member name="P:Ninject.Planning.Plan.Directives">
|
3077
|
+
<summary>
|
3078
|
+
Gets the directives defined in the plan.
|
3079
|
+
</summary>
|
3080
|
+
</member>
|
3081
|
+
<member name="T:Ninject.Planning.Planner">
|
3082
|
+
<summary>
|
3083
|
+
Generates plans for how to activate instances.
|
3084
|
+
</summary>
|
3085
|
+
</member>
|
3086
|
+
<member name="M:Ninject.Planning.Planner.#ctor(System.Collections.Generic.IEnumerable{Ninject.Planning.Strategies.IPlanningStrategy})">
|
3087
|
+
<summary>
|
3088
|
+
Initializes a new instance of the <see cref="T:Ninject.Planning.Planner"/> class.
|
3089
|
+
</summary>
|
3090
|
+
<param name="strategies">The strategies to execute during planning.</param>
|
3091
|
+
</member>
|
3092
|
+
<member name="M:Ninject.Planning.Planner.GetPlan(System.Type)">
|
3093
|
+
<summary>
|
3094
|
+
Gets or creates an activation plan for the specified type.
|
3095
|
+
</summary>
|
3096
|
+
<param name="type">The type for which a plan should be created.</param>
|
3097
|
+
<returns>The type's activation plan.</returns>
|
3098
|
+
</member>
|
3099
|
+
<member name="M:Ninject.Planning.Planner.CreateEmptyPlan(System.Type)">
|
3100
|
+
<summary>
|
3101
|
+
Creates an empty plan for the specified type.
|
3102
|
+
</summary>
|
3103
|
+
<param name="type">The type for which a plan should be created.</param>
|
3104
|
+
<returns>The created plan.</returns>
|
3105
|
+
</member>
|
3106
|
+
<member name="P:Ninject.Planning.Planner.Strategies">
|
3107
|
+
<summary>
|
3108
|
+
Gets the strategies that contribute to the planning process.
|
3109
|
+
</summary>
|
3110
|
+
</member>
|
3111
|
+
<member name="T:Ninject.Selection.Heuristics.IConstructorScorer">
|
3112
|
+
<summary>
|
3113
|
+
Generates scores for constructors, to determine which is the best one to call during activation.
|
3114
|
+
</summary>
|
3115
|
+
</member>
|
3116
|
+
<member name="M:Ninject.Selection.Heuristics.IConstructorScorer.Score(Ninject.Activation.IContext,Ninject.Planning.Directives.ConstructorInjectionDirective)">
|
3117
|
+
<summary>
|
3118
|
+
Gets the score for the specified constructor.
|
3119
|
+
</summary>
|
3120
|
+
<param name="context">The injection context.</param>
|
3121
|
+
<param name="directive">The constructor.</param>
|
3122
|
+
<returns>The constructor's score.</returns>
|
3123
|
+
</member>
|
3124
|
+
<member name="T:Ninject.Selection.Heuristics.IInjectionHeuristic">
|
3125
|
+
<summary>
|
3126
|
+
Determines whether members should be injected during activation.
|
3127
|
+
</summary>
|
3128
|
+
</member>
|
3129
|
+
<member name="M:Ninject.Selection.Heuristics.IInjectionHeuristic.ShouldInject(System.Reflection.MemberInfo)">
|
3130
|
+
<summary>
|
3131
|
+
Returns a value indicating whether the specified member should be injected.
|
3132
|
+
</summary>
|
3133
|
+
<param name="member">The member in question.</param>
|
3134
|
+
<returns><c>True</c> if the member should be injected; otherwise <c>false</c>.</returns>
|
3135
|
+
</member>
|
3136
|
+
<member name="T:Ninject.Selection.Heuristics.StandardConstructorScorer">
|
3137
|
+
<summary>
|
3138
|
+
Scores constructors by either looking for the existence of an injection marker
|
3139
|
+
attribute, or by counting the number of parameters.
|
3140
|
+
</summary>
|
3141
|
+
</member>
|
3142
|
+
<member name="M:Ninject.Selection.Heuristics.StandardConstructorScorer.Score(Ninject.Activation.IContext,Ninject.Planning.Directives.ConstructorInjectionDirective)">
|
3143
|
+
<summary>
|
3144
|
+
Gets the score for the specified constructor.
|
3145
|
+
</summary>
|
3146
|
+
<param name="context">The injection context.</param>
|
3147
|
+
<param name="directive">The constructor.</param>
|
3148
|
+
<returns>The constructor's score.</returns>
|
3149
|
+
</member>
|
3150
|
+
<member name="T:Ninject.Selection.Heuristics.StandardInjectionHeuristic">
|
3151
|
+
<summary>
|
3152
|
+
Determines whether members should be injected during activation by checking
|
3153
|
+
if they are decorated with an injection marker attribute.
|
3154
|
+
</summary>
|
3155
|
+
</member>
|
3156
|
+
<member name="M:Ninject.Selection.Heuristics.StandardInjectionHeuristic.ShouldInject(System.Reflection.MemberInfo)">
|
3157
|
+
<summary>
|
3158
|
+
Returns a value indicating whether the specified member should be injected.
|
3159
|
+
</summary>
|
3160
|
+
<param name="member">The member in question.</param>
|
3161
|
+
<returns><c>True</c> if the member should be injected; otherwise <c>false</c>.</returns>
|
3162
|
+
</member>
|
3163
|
+
<member name="T:Ninject.Selection.ISelector">
|
3164
|
+
<summary>
|
3165
|
+
Selects members for injection.
|
3166
|
+
</summary>
|
3167
|
+
</member>
|
3168
|
+
<member name="M:Ninject.Selection.ISelector.SelectConstructorsForInjection(System.Type)">
|
3169
|
+
<summary>
|
3170
|
+
Selects the constructor to call on the specified type, by using the constructor scorer.
|
3171
|
+
</summary>
|
3172
|
+
<param name="type">The type.</param>
|
3173
|
+
<returns>The selected constructor, or <see langword="null"/> if none were available.</returns>
|
3174
|
+
</member>
|
3175
|
+
<member name="M:Ninject.Selection.ISelector.SelectPropertiesForInjection(System.Type)">
|
3176
|
+
<summary>
|
3177
|
+
Selects properties that should be injected.
|
3178
|
+
</summary>
|
3179
|
+
<param name="type">The type.</param>
|
3180
|
+
<returns>A series of the selected properties.</returns>
|
3181
|
+
</member>
|
3182
|
+
<member name="M:Ninject.Selection.ISelector.SelectMethodsForInjection(System.Type)">
|
3183
|
+
<summary>
|
3184
|
+
Selects methods that should be injected.
|
3185
|
+
</summary>
|
3186
|
+
<param name="type">The type.</param>
|
3187
|
+
<returns>A series of the selected methods.</returns>
|
3188
|
+
</member>
|
3189
|
+
<member name="P:Ninject.Selection.ISelector.ConstructorScorer">
|
3190
|
+
<summary>
|
3191
|
+
Gets or sets the constructor scorer.
|
3192
|
+
</summary>
|
3193
|
+
</member>
|
3194
|
+
<member name="P:Ninject.Selection.ISelector.InjectionHeuristics">
|
3195
|
+
<summary>
|
3196
|
+
Gets the heuristics used to determine which members should be injected.
|
3197
|
+
</summary>
|
3198
|
+
</member>
|
3199
|
+
<member name="T:Ninject.Selection.Selector">
|
3200
|
+
<summary>
|
3201
|
+
Selects members for injection.
|
3202
|
+
</summary>
|
3203
|
+
</member>
|
3204
|
+
<member name="M:Ninject.Selection.Selector.#ctor(Ninject.Selection.Heuristics.IConstructorScorer,System.Collections.Generic.IEnumerable{Ninject.Selection.Heuristics.IInjectionHeuristic})">
|
3205
|
+
<summary>
|
3206
|
+
Initializes a new instance of the <see cref="T:Ninject.Selection.Selector"/> class.
|
3207
|
+
</summary>
|
3208
|
+
<param name="constructorScorer">The constructor scorer.</param>
|
3209
|
+
<param name="injectionHeuristics">The injection heuristics.</param>
|
3210
|
+
</member>
|
3211
|
+
<member name="M:Ninject.Selection.Selector.SelectConstructorsForInjection(System.Type)">
|
3212
|
+
<summary>
|
3213
|
+
Selects the constructor to call on the specified type, by using the constructor scorer.
|
3214
|
+
</summary>
|
3215
|
+
<param name="type">The type.</param>
|
3216
|
+
<returns>The selected constructor, or <see langword="null"/> if none were available.</returns>
|
3217
|
+
</member>
|
3218
|
+
<member name="M:Ninject.Selection.Selector.SelectPropertiesForInjection(System.Type)">
|
3219
|
+
<summary>
|
3220
|
+
Selects properties that should be injected.
|
3221
|
+
</summary>
|
3222
|
+
<param name="type">The type.</param>
|
3223
|
+
<returns>A series of the selected properties.</returns>
|
3224
|
+
</member>
|
3225
|
+
<member name="M:Ninject.Selection.Selector.SelectMethodsForInjection(System.Type)">
|
3226
|
+
<summary>
|
3227
|
+
Selects methods that should be injected.
|
3228
|
+
</summary>
|
3229
|
+
<param name="type">The type.</param>
|
3230
|
+
<returns>A series of the selected methods.</returns>
|
3231
|
+
</member>
|
3232
|
+
<member name="P:Ninject.Selection.Selector.ConstructorScorer">
|
3233
|
+
<summary>
|
3234
|
+
Gets or sets the constructor scorer.
|
3235
|
+
</summary>
|
3236
|
+
</member>
|
3237
|
+
<member name="P:Ninject.Selection.Selector.InjectionHeuristics">
|
3238
|
+
<summary>
|
3239
|
+
Gets the property injection heuristics.
|
3240
|
+
</summary>
|
3241
|
+
</member>
|
3242
|
+
<member name="T:Ninject.ModuleLoadExtensions">
|
3243
|
+
<summary>
|
3244
|
+
Extension methods that enhance module loading.
|
3245
|
+
</summary>
|
3246
|
+
</member>
|
3247
|
+
<member name="M:Ninject.ModuleLoadExtensions.Load``1(Ninject.IKernel)">
|
3248
|
+
<summary>
|
3249
|
+
Creates a new instance of the module and loads it into the kernel.
|
3250
|
+
</summary>
|
3251
|
+
<typeparam name="TModule">The type of the module.</typeparam>
|
3252
|
+
<param name="kernel">The kernel.</param>
|
3253
|
+
</member>
|
3254
|
+
<member name="M:Ninject.ModuleLoadExtensions.Load(Ninject.IKernel,Ninject.Modules.INinjectModule[])">
|
3255
|
+
<summary>
|
3256
|
+
Loads the module(s) into the kernel.
|
3257
|
+
</summary>
|
3258
|
+
<param name="kernel">The kernel.</param>
|
3259
|
+
<param name="modules">The modules to load.</param>
|
3260
|
+
</member>
|
3261
|
+
<member name="T:Ninject.ResolutionExtensions">
|
3262
|
+
<summary>
|
3263
|
+
Extensions that enhance resolution of services.
|
3264
|
+
</summary>
|
3265
|
+
</member>
|
3266
|
+
<member name="M:Ninject.ResolutionExtensions.Get``1(Ninject.Syntax.IResolutionRoot,Ninject.Parameters.IParameter[])">
|
3267
|
+
<summary>
|
3268
|
+
Gets an instance of the specified service.
|
3269
|
+
</summary>
|
3270
|
+
<typeparam name="T">The service to resolve.</typeparam>
|
3271
|
+
<param name="root">The resolution root.</param>
|
3272
|
+
<param name="parameters">The parameters to pass to the request.</param>
|
3273
|
+
<returns>An instance of the service.</returns>
|
3274
|
+
</member>
|
3275
|
+
<member name="M:Ninject.ResolutionExtensions.Get``1(Ninject.Syntax.IResolutionRoot,System.String,Ninject.Parameters.IParameter[])">
|
3276
|
+
<summary>
|
3277
|
+
Gets an instance of the specified service by using the first binding with the specified name.
|
3278
|
+
</summary>
|
3279
|
+
<typeparam name="T">The service to resolve.</typeparam>
|
3280
|
+
<param name="root">The resolution root.</param>
|
3281
|
+
<param name="name">The name of the binding.</param>
|
3282
|
+
<param name="parameters">The parameters to pass to the request.</param>
|
3283
|
+
<returns>An instance of the service.</returns>
|
3284
|
+
</member>
|
3285
|
+
<member name="M:Ninject.ResolutionExtensions.Get``1(Ninject.Syntax.IResolutionRoot,System.Func{Ninject.Planning.Bindings.IBindingMetadata,System.Boolean},Ninject.Parameters.IParameter[])">
|
3286
|
+
<summary>
|
3287
|
+
Gets an instance of the specified service by using the first binding that matches the specified constraint.
|
3288
|
+
</summary>
|
3289
|
+
<typeparam name="T">The service to resolve.</typeparam>
|
3290
|
+
<param name="root">The resolution root.</param>
|
3291
|
+
<param name="constraint">The constraint to apply to the binding.</param>
|
3292
|
+
<param name="parameters">The parameters to pass to the request.</param>
|
3293
|
+
<returns>An instance of the service.</returns>
|
3294
|
+
</member>
|
3295
|
+
<member name="M:Ninject.ResolutionExtensions.TryGet``1(Ninject.Syntax.IResolutionRoot,Ninject.Parameters.IParameter[])">
|
3296
|
+
<summary>
|
3297
|
+
Tries to get an instance of the specified service.
|
3298
|
+
</summary>
|
3299
|
+
<typeparam name="T">The service to resolve.</typeparam>
|
3300
|
+
<param name="root">The resolution root.</param>
|
3301
|
+
<param name="parameters">The parameters to pass to the request.</param>
|
3302
|
+
<returns>An instance of the service, or <see langword="null"/> if no implementation was available.</returns>
|
3303
|
+
</member>
|
3304
|
+
<member name="M:Ninject.ResolutionExtensions.TryGet``1(Ninject.Syntax.IResolutionRoot,System.String,Ninject.Parameters.IParameter[])">
|
3305
|
+
<summary>
|
3306
|
+
Tries to get an instance of the specified service by using the first binding with the specified name.
|
3307
|
+
</summary>
|
3308
|
+
<typeparam name="T">The service to resolve.</typeparam>
|
3309
|
+
<param name="root">The resolution root.</param>
|
3310
|
+
<param name="name">The name of the binding.</param>
|
3311
|
+
<param name="parameters">The parameters to pass to the request.</param>
|
3312
|
+
<returns>An instance of the service, or <see langword="null"/> if no implementation was available.</returns>
|
3313
|
+
</member>
|
3314
|
+
<member name="M:Ninject.ResolutionExtensions.TryGet``1(Ninject.Syntax.IResolutionRoot,System.Func{Ninject.Planning.Bindings.IBindingMetadata,System.Boolean},Ninject.Parameters.IParameter[])">
|
3315
|
+
<summary>
|
3316
|
+
Tries to get an instance of the specified service by using the first binding that matches the specified constraint.
|
3317
|
+
</summary>
|
3318
|
+
<typeparam name="T">The service to resolve.</typeparam>
|
3319
|
+
<param name="root">The resolution root.</param>
|
3320
|
+
<param name="constraint">The constraint to apply to the binding.</param>
|
3321
|
+
<param name="parameters">The parameters to pass to the request.</param>
|
3322
|
+
<returns>An instance of the service, or <see langword="null"/> if no implementation was available.</returns>
|
3323
|
+
</member>
|
3324
|
+
<member name="M:Ninject.ResolutionExtensions.GetAll``1(Ninject.Syntax.IResolutionRoot,Ninject.Parameters.IParameter[])">
|
3325
|
+
<summary>
|
3326
|
+
Gets all available instances of the specified service.
|
3327
|
+
</summary>
|
3328
|
+
<typeparam name="T">The service to resolve.</typeparam>
|
3329
|
+
<param name="root">The resolution root.</param>
|
3330
|
+
<param name="parameters">The parameters to pass to the request.</param>
|
3331
|
+
<returns>A series of instances of the service.</returns>
|
3332
|
+
</member>
|
3333
|
+
<member name="M:Ninject.ResolutionExtensions.GetAll``1(Ninject.Syntax.IResolutionRoot,System.String,Ninject.Parameters.IParameter[])">
|
3334
|
+
<summary>
|
3335
|
+
Gets all instances of the specified service using bindings registered with the specified name.
|
3336
|
+
</summary>
|
3337
|
+
<typeparam name="T">The service to resolve.</typeparam>
|
3338
|
+
<param name="root">The resolution root.</param>
|
3339
|
+
<param name="name">The name of the binding.</param>
|
3340
|
+
<param name="parameters">The parameters to pass to the request.</param>
|
3341
|
+
<returns>A series of instances of the service.</returns>
|
3342
|
+
</member>
|
3343
|
+
<member name="M:Ninject.ResolutionExtensions.GetAll``1(Ninject.Syntax.IResolutionRoot,System.Func{Ninject.Planning.Bindings.IBindingMetadata,System.Boolean},Ninject.Parameters.IParameter[])">
|
3344
|
+
<summary>
|
3345
|
+
Gets all instances of the specified service by using the bindings that match the specified constraint.
|
3346
|
+
</summary>
|
3347
|
+
<typeparam name="T">The service to resolve.</typeparam>
|
3348
|
+
<param name="root">The resolution root.</param>
|
3349
|
+
<param name="constraint">The constraint to apply to the bindings.</param>
|
3350
|
+
<param name="parameters">The parameters to pass to the request.</param>
|
3351
|
+
<returns>A series of instances of the service.</returns>
|
3352
|
+
</member>
|
3353
|
+
<member name="M:Ninject.ResolutionExtensions.Get(Ninject.Syntax.IResolutionRoot,System.Type,Ninject.Parameters.IParameter[])">
|
3354
|
+
<summary>
|
3355
|
+
Gets an instance of the specified service.
|
3356
|
+
</summary>
|
3357
|
+
<param name="root">The resolution root.</param>
|
3358
|
+
<param name="service">The service to resolve.</param>
|
3359
|
+
<param name="parameters">The parameters to pass to the request.</param>
|
3360
|
+
<returns>An instance of the service.</returns>
|
3361
|
+
</member>
|
3362
|
+
<member name="M:Ninject.ResolutionExtensions.Get(Ninject.Syntax.IResolutionRoot,System.Type,System.String,Ninject.Parameters.IParameter[])">
|
3363
|
+
<summary>
|
3364
|
+
Gets an instance of the specified service by using the first binding with the specified name.
|
3365
|
+
</summary>
|
3366
|
+
<param name="root">The resolution root.</param>
|
3367
|
+
<param name="service">The service to resolve.</param>
|
3368
|
+
<param name="name">The name of the binding.</param>
|
3369
|
+
<param name="parameters">The parameters to pass to the request.</param>
|
3370
|
+
<returns>An instance of the service.</returns>
|
3371
|
+
</member>
|
3372
|
+
<member name="M:Ninject.ResolutionExtensions.Get(Ninject.Syntax.IResolutionRoot,System.Type,System.Func{Ninject.Planning.Bindings.IBindingMetadata,System.Boolean},Ninject.Parameters.IParameter[])">
|
3373
|
+
<summary>
|
3374
|
+
Gets an instance of the specified service by using the first binding that matches the specified constraint.
|
3375
|
+
</summary>
|
3376
|
+
<param name="root">The resolution root.</param>
|
3377
|
+
<param name="service">The service to resolve.</param>
|
3378
|
+
<param name="constraint">The constraint to apply to the binding.</param>
|
3379
|
+
<param name="parameters">The parameters to pass to the request.</param>
|
3380
|
+
<returns>An instance of the service.</returns>
|
3381
|
+
</member>
|
3382
|
+
<member name="M:Ninject.ResolutionExtensions.TryGet(Ninject.Syntax.IResolutionRoot,System.Type,Ninject.Parameters.IParameter[])">
|
3383
|
+
<summary>
|
3384
|
+
Tries to get an instance of the specified service.
|
3385
|
+
</summary>
|
3386
|
+
<param name="root">The resolution root.</param>
|
3387
|
+
<param name="service">The service to resolve.</param>
|
3388
|
+
<param name="parameters">The parameters to pass to the request.</param>
|
3389
|
+
<returns>An instance of the service, or <see langword="null"/> if no implementation was available.</returns>
|
3390
|
+
</member>
|
3391
|
+
<member name="M:Ninject.ResolutionExtensions.TryGet(Ninject.Syntax.IResolutionRoot,System.Type,System.String,Ninject.Parameters.IParameter[])">
|
3392
|
+
<summary>
|
3393
|
+
Tries to get an instance of the specified service by using the first binding with the specified name.
|
3394
|
+
</summary>
|
3395
|
+
<param name="root">The resolution root.</param>
|
3396
|
+
<param name="service">The service to resolve.</param>
|
3397
|
+
<param name="name">The name of the binding.</param>
|
3398
|
+
<param name="parameters">The parameters to pass to the request.</param>
|
3399
|
+
<returns>An instance of the service, or <see langword="null"/> if no implementation was available.</returns>
|
3400
|
+
</member>
|
3401
|
+
<member name="M:Ninject.ResolutionExtensions.TryGet(Ninject.Syntax.IResolutionRoot,System.Type,System.Func{Ninject.Planning.Bindings.IBindingMetadata,System.Boolean},Ninject.Parameters.IParameter[])">
|
3402
|
+
<summary>
|
3403
|
+
Tries to get an instance of the specified service by using the first binding that matches the specified constraint.
|
3404
|
+
</summary>
|
3405
|
+
<param name="root">The resolution root.</param>
|
3406
|
+
<param name="service">The service to resolve.</param>
|
3407
|
+
<param name="constraint">The constraint to apply to the binding.</param>
|
3408
|
+
<param name="parameters">The parameters to pass to the request.</param>
|
3409
|
+
<returns>An instance of the service, or <see langword="null"/> if no implementation was available.</returns>
|
3410
|
+
</member>
|
3411
|
+
<member name="M:Ninject.ResolutionExtensions.GetAll(Ninject.Syntax.IResolutionRoot,System.Type,Ninject.Parameters.IParameter[])">
|
3412
|
+
<summary>
|
3413
|
+
Gets all available instances of the specified service.
|
3414
|
+
</summary>
|
3415
|
+
<param name="root">The resolution root.</param>
|
3416
|
+
<param name="service">The service to resolve.</param>
|
3417
|
+
<param name="parameters">The parameters to pass to the request.</param>
|
3418
|
+
<returns>A series of instances of the service.</returns>
|
3419
|
+
</member>
|
3420
|
+
<member name="M:Ninject.ResolutionExtensions.GetAll(Ninject.Syntax.IResolutionRoot,System.Type,System.String,Ninject.Parameters.IParameter[])">
|
3421
|
+
<summary>
|
3422
|
+
Gets all instances of the specified service using bindings registered with the specified name.
|
3423
|
+
</summary>
|
3424
|
+
<param name="root">The resolution root.</param>
|
3425
|
+
<param name="service">The service to resolve.</param>
|
3426
|
+
<param name="name">The name of the binding.</param>
|
3427
|
+
<param name="parameters">The parameters to pass to the request.</param>
|
3428
|
+
<returns>A series of instances of the service.</returns>
|
3429
|
+
</member>
|
3430
|
+
<member name="M:Ninject.ResolutionExtensions.GetAll(Ninject.Syntax.IResolutionRoot,System.Type,System.Func{Ninject.Planning.Bindings.IBindingMetadata,System.Boolean},Ninject.Parameters.IParameter[])">
|
3431
|
+
<summary>
|
3432
|
+
Gets all instances of the specified service by using the bindings that match the specified constraint.
|
3433
|
+
</summary>
|
3434
|
+
<param name="root">The resolution root.</param>
|
3435
|
+
<param name="service">The service to resolve.</param>
|
3436
|
+
<param name="constraint">The constraint to apply to the bindings.</param>
|
3437
|
+
<param name="parameters">The parameters to pass to the request.</param>
|
3438
|
+
<returns>A series of instances of the service.</returns>
|
3439
|
+
</member>
|
3440
|
+
<member name="T:Ninject.ActivationException">
|
3441
|
+
<summary>
|
3442
|
+
Indicates that an error occured during activation of an instance.
|
3443
|
+
</summary>
|
3444
|
+
</member>
|
3445
|
+
<member name="M:Ninject.ActivationException.#ctor">
|
3446
|
+
<summary>
|
3447
|
+
Initializes a new instance of the <see cref="T:Ninject.ActivationException"/> class.
|
3448
|
+
</summary>
|
3449
|
+
</member>
|
3450
|
+
<member name="M:Ninject.ActivationException.#ctor(System.String)">
|
3451
|
+
<summary>
|
3452
|
+
Initializes a new instance of the <see cref="T:Ninject.ActivationException"/> class.
|
3453
|
+
</summary>
|
3454
|
+
<param name="message">The exception message.</param>
|
3455
|
+
</member>
|
3456
|
+
<member name="M:Ninject.ActivationException.#ctor(System.String,System.Exception)">
|
3457
|
+
<summary>
|
3458
|
+
Initializes a new instance of the <see cref="T:Ninject.ActivationException"/> class.
|
3459
|
+
</summary>
|
3460
|
+
<param name="message">The exception message.</param>
|
3461
|
+
<param name="innerException">The inner exception.</param>
|
3462
|
+
</member>
|
3463
|
+
<member name="T:Ninject.IInitializable">
|
3464
|
+
<summary>
|
3465
|
+
A service that requires initialization after it is activated.
|
3466
|
+
</summary>
|
3467
|
+
</member>
|
3468
|
+
<member name="M:Ninject.IInitializable.Initialize">
|
3469
|
+
<summary>
|
3470
|
+
Initializes the instance. Called during activation.
|
3471
|
+
</summary>
|
3472
|
+
</member>
|
3473
|
+
<member name="T:Ninject.IKernel">
|
3474
|
+
<summary>
|
3475
|
+
A super-factory that can create objects of all kinds, following hints provided by <see cref="T:Ninject.Planning.Bindings.IBinding"/>s.
|
3476
|
+
</summary>
|
3477
|
+
</member>
|
3478
|
+
<member name="M:Ninject.IKernel.GetModules">
|
3479
|
+
<summary>
|
3480
|
+
Gets the modules that have been loaded into the kernel.
|
3481
|
+
</summary>
|
3482
|
+
<returns>A series of loaded modules.</returns>
|
3483
|
+
</member>
|
3484
|
+
<member name="M:Ninject.IKernel.HasModule(System.String)">
|
3485
|
+
<summary>
|
3486
|
+
Determines whether a module with the specified name has been loaded in the kernel.
|
3487
|
+
</summary>
|
3488
|
+
<param name="name">The name of the module.</param>
|
3489
|
+
<returns><c>True</c> if the specified module has been loaded; otherwise, <c>false</c>.</returns>
|
3490
|
+
</member>
|
3491
|
+
<member name="M:Ninject.IKernel.Load(System.Collections.Generic.IEnumerable{Ninject.Modules.INinjectModule})">
|
3492
|
+
<summary>
|
3493
|
+
Loads the module(s) into the kernel.
|
3494
|
+
</summary>
|
3495
|
+
<param name="modules">The modules to load.</param>
|
3496
|
+
</member>
|
3497
|
+
<member name="M:Ninject.IKernel.Unload(System.String)">
|
3498
|
+
<summary>
|
3499
|
+
Unloads the plugin with the specified name.
|
3500
|
+
</summary>
|
3501
|
+
<param name="name">The plugin's name.</param>
|
3502
|
+
</member>
|
3503
|
+
<member name="M:Ninject.IKernel.Inject(System.Object,Ninject.Parameters.IParameter[])">
|
3504
|
+
<summary>
|
3505
|
+
Injects the specified existing instance, without managing its lifecycle.
|
3506
|
+
</summary>
|
3507
|
+
<param name="instance">The instance to inject.</param>
|
3508
|
+
<param name="parameters">The parameters to pass to the request.</param>
|
3509
|
+
</member>
|
3510
|
+
<member name="M:Ninject.IKernel.Release(System.Object)">
|
3511
|
+
<summary>
|
3512
|
+
Deactivates and releases the specified instance if it is currently managed by Ninject.
|
3513
|
+
</summary>
|
3514
|
+
<param name="instance">The instance to release.</param>
|
3515
|
+
<returns><see langword="True"/> if the instance was found and released; otherwise <see langword="false"/>.</returns>
|
3516
|
+
</member>
|
3517
|
+
<member name="M:Ninject.IKernel.GetBindings(System.Type)">
|
3518
|
+
<summary>
|
3519
|
+
Gets the bindings registered for the specified service.
|
3520
|
+
</summary>
|
3521
|
+
<param name="service">The service in question.</param>
|
3522
|
+
<returns>A series of bindings that are registered for the service.</returns>
|
3523
|
+
</member>
|
3524
|
+
<member name="M:Ninject.IKernel.BeginBlock">
|
3525
|
+
<summary>
|
3526
|
+
Begins a new activation block, which can be used to deterministically dispose resolved instances.
|
3527
|
+
</summary>
|
3528
|
+
<returns>The new activation block.</returns>
|
3529
|
+
</member>
|
3530
|
+
<member name="P:Ninject.IKernel.Settings">
|
3531
|
+
<summary>
|
3532
|
+
Gets the kernel settings.
|
3533
|
+
</summary>
|
3534
|
+
</member>
|
3535
|
+
<member name="P:Ninject.IKernel.Components">
|
3536
|
+
<summary>
|
3537
|
+
Gets the component container, which holds components that contribute to Ninject.
|
3538
|
+
</summary>
|
3539
|
+
</member>
|
3540
|
+
<member name="T:Ninject.INinjectSettings">
|
3541
|
+
<summary>
|
3542
|
+
Contains configuration options for Ninject.
|
3543
|
+
</summary>
|
3544
|
+
</member>
|
3545
|
+
<member name="M:Ninject.INinjectSettings.Get``1(System.String,``0)">
|
3546
|
+
<summary>
|
3547
|
+
Gets the value for the specified key.
|
3548
|
+
</summary>
|
3549
|
+
<typeparam name="T">The type of value to return.</typeparam>
|
3550
|
+
<param name="key">The setting's key.</param>
|
3551
|
+
<param name="defaultValue">The value to return if no setting is available.</param>
|
3552
|
+
<returns>The value, or the default value if none was found.</returns>
|
3553
|
+
</member>
|
3554
|
+
<member name="M:Ninject.INinjectSettings.Set(System.String,System.Object)">
|
3555
|
+
<summary>
|
3556
|
+
Sets the value for the specified key.
|
3557
|
+
</summary>
|
3558
|
+
<param name="key">The setting's key.</param>
|
3559
|
+
<param name="value">The setting's value.</param>
|
3560
|
+
</member>
|
3561
|
+
<member name="P:Ninject.INinjectSettings.InjectAttribute">
|
3562
|
+
<summary>
|
3563
|
+
Gets the attribute that indicates that a member should be injected.
|
3564
|
+
</summary>
|
3565
|
+
</member>
|
3566
|
+
<member name="P:Ninject.INinjectSettings.CachePruningInterval">
|
3567
|
+
<summary>
|
3568
|
+
Gets the interval at which the cache should be pruned.
|
3569
|
+
</summary>
|
3570
|
+
</member>
|
3571
|
+
<member name="P:Ninject.INinjectSettings.UseReflectionBasedInjection">
|
3572
|
+
<summary>
|
3573
|
+
Gets a value indicating whether Ninject should use reflection-based injection instead of
|
3574
|
+
the (usually faster) lightweight code generation system.
|
3575
|
+
</summary>
|
3576
|
+
</member>
|
3577
|
+
<member name="P:Ninject.INinjectSettings.InjectNonPublic">
|
3578
|
+
<summary>
|
3579
|
+
Gets a value indicating whether Ninject should inject non public members.
|
3580
|
+
</summary>
|
3581
|
+
</member>
|
3582
|
+
<member name="T:Ninject.IStartable">
|
3583
|
+
<summary>
|
3584
|
+
A service that is started when activated, and stopped when deactivated.
|
3585
|
+
</summary>
|
3586
|
+
</member>
|
3587
|
+
<member name="M:Ninject.IStartable.Start">
|
3588
|
+
<summary>
|
3589
|
+
Starts this instance. Called during activation.
|
3590
|
+
</summary>
|
3591
|
+
</member>
|
3592
|
+
<member name="M:Ninject.IStartable.Stop">
|
3593
|
+
<summary>
|
3594
|
+
Stops this instance. Called during deactivation.
|
3595
|
+
</summary>
|
3596
|
+
</member>
|
3597
|
+
<member name="T:Ninject.KernelBase">
|
3598
|
+
<summary>
|
3599
|
+
The base implementation of an <see cref="T:Ninject.IKernel"/>.
|
3600
|
+
</summary>
|
3601
|
+
</member>
|
3602
|
+
<member name="M:Ninject.KernelBase.#ctor">
|
3603
|
+
<summary>
|
3604
|
+
Initializes a new instance of the <see cref="T:Ninject.KernelBase"/> class.
|
3605
|
+
</summary>
|
3606
|
+
</member>
|
3607
|
+
<member name="M:Ninject.KernelBase.#ctor(Ninject.Modules.INinjectModule[])">
|
3608
|
+
<summary>
|
3609
|
+
Initializes a new instance of the <see cref="T:Ninject.KernelBase"/> class.
|
3610
|
+
</summary>
|
3611
|
+
<param name="modules">The modules to load into the kernel.</param>
|
3612
|
+
</member>
|
3613
|
+
<member name="M:Ninject.KernelBase.#ctor(Ninject.INinjectSettings,Ninject.Modules.INinjectModule[])">
|
3614
|
+
<summary>
|
3615
|
+
Initializes a new instance of the <see cref="T:Ninject.KernelBase"/> class.
|
3616
|
+
</summary>
|
3617
|
+
<param name="settings">The configuration to use.</param>
|
3618
|
+
<param name="modules">The modules to load into the kernel.</param>
|
3619
|
+
</member>
|
3620
|
+
<member name="M:Ninject.KernelBase.#ctor(Ninject.Components.IComponentContainer,Ninject.INinjectSettings,Ninject.Modules.INinjectModule[])">
|
3621
|
+
<summary>
|
3622
|
+
Initializes a new instance of the <see cref="T:Ninject.KernelBase"/> class.
|
3623
|
+
</summary>
|
3624
|
+
<param name="components">The component container to use.</param>
|
3625
|
+
<param name="settings">The configuration to use.</param>
|
3626
|
+
<param name="modules">The modules to load into the kernel.</param>
|
3627
|
+
</member>
|
3628
|
+
<member name="M:Ninject.KernelBase.Dispose(System.Boolean)">
|
3629
|
+
<summary>
|
3630
|
+
Releases resources held by the object.
|
3631
|
+
</summary>
|
3632
|
+
</member>
|
3633
|
+
<member name="M:Ninject.KernelBase.Unbind(System.Type)">
|
3634
|
+
<summary>
|
3635
|
+
Unregisters all bindings for the specified service.
|
3636
|
+
</summary>
|
3637
|
+
<param name="service">The service to unbind.</param>
|
3638
|
+
</member>
|
3639
|
+
<member name="M:Ninject.KernelBase.AddBinding(Ninject.Planning.Bindings.IBinding)">
|
3640
|
+
<summary>
|
3641
|
+
Registers the specified binding.
|
3642
|
+
</summary>
|
3643
|
+
<param name="binding">The binding to add.</param>
|
3644
|
+
</member>
|
3645
|
+
<member name="M:Ninject.KernelBase.RemoveBinding(Ninject.Planning.Bindings.IBinding)">
|
3646
|
+
<summary>
|
3647
|
+
Unregisters the specified binding.
|
3648
|
+
</summary>
|
3649
|
+
<param name="binding">The binding to remove.</param>
|
3650
|
+
</member>
|
3651
|
+
<member name="M:Ninject.KernelBase.HasModule(System.String)">
|
3652
|
+
<summary>
|
3653
|
+
Determines whether a module with the specified name has been loaded in the kernel.
|
3654
|
+
</summary>
|
3655
|
+
<param name="name">The name of the module.</param>
|
3656
|
+
<returns><c>True</c> if the specified module has been loaded; otherwise, <c>false</c>.</returns>
|
3657
|
+
</member>
|
3658
|
+
<member name="M:Ninject.KernelBase.GetModules">
|
3659
|
+
<summary>
|
3660
|
+
Gets the modules that have been loaded into the kernel.
|
3661
|
+
</summary>
|
3662
|
+
<returns>A series of loaded modules.</returns>
|
3663
|
+
</member>
|
3664
|
+
<member name="M:Ninject.KernelBase.Load(System.Collections.Generic.IEnumerable{Ninject.Modules.INinjectModule})">
|
3665
|
+
<summary>
|
3666
|
+
Loads the module(s) into the kernel.
|
3667
|
+
</summary>
|
3668
|
+
<param name="modules">The modules to load.</param>
|
3669
|
+
</member>
|
3670
|
+
<member name="M:Ninject.KernelBase.Unload(System.String)">
|
3671
|
+
<summary>
|
3672
|
+
Unloads the plugin with the specified name.
|
3673
|
+
</summary>
|
3674
|
+
<param name="name">The plugin's name.</param>
|
3675
|
+
</member>
|
3676
|
+
<member name="M:Ninject.KernelBase.Inject(System.Object,Ninject.Parameters.IParameter[])">
|
3677
|
+
<summary>
|
3678
|
+
Injects the specified existing instance, without managing its lifecycle.
|
3679
|
+
</summary>
|
3680
|
+
<param name="instance">The instance to inject.</param>
|
3681
|
+
<param name="parameters">The parameters to pass to the request.</param>
|
3682
|
+
</member>
|
3683
|
+
<member name="M:Ninject.KernelBase.Release(System.Object)">
|
3684
|
+
<summary>
|
3685
|
+
Deactivates and releases the specified instance if it is currently managed by Ninject.
|
3686
|
+
</summary>
|
3687
|
+
<param name="instance">The instance to release.</param>
|
3688
|
+
<returns><see langword="True"/> if the instance was found and released; otherwise <see langword="false"/>.</returns>
|
3689
|
+
</member>
|
3690
|
+
<member name="M:Ninject.KernelBase.CanResolve(Ninject.Activation.IRequest)">
|
3691
|
+
<summary>
|
3692
|
+
Determines whether the specified request can be resolved.
|
3693
|
+
</summary>
|
3694
|
+
<param name="request">The request.</param>
|
3695
|
+
<returns><c>True</c> if the request can be resolved; otherwise, <c>false</c>.</returns>
|
3696
|
+
</member>
|
3697
|
+
<member name="M:Ninject.KernelBase.Resolve(Ninject.Activation.IRequest)">
|
3698
|
+
<summary>
|
3699
|
+
Resolves instances for the specified request. The instances are not actually resolved
|
3700
|
+
until a consumer iterates over the enumerator.
|
3701
|
+
</summary>
|
3702
|
+
<param name="request">The request to resolve.</param>
|
3703
|
+
<returns>An enumerator of instances that match the request.</returns>
|
3704
|
+
</member>
|
3705
|
+
<member name="M:Ninject.KernelBase.CreateRequest(System.Type,System.Func{Ninject.Planning.Bindings.IBindingMetadata,System.Boolean},System.Collections.Generic.IEnumerable{Ninject.Parameters.IParameter},System.Boolean,System.Boolean)">
|
3706
|
+
<summary>
|
3707
|
+
Creates a request for the specified service.
|
3708
|
+
</summary>
|
3709
|
+
<param name="service">The service that is being requested.</param>
|
3710
|
+
<param name="constraint">The constraint to apply to the bindings to determine if they match the request.</param>
|
3711
|
+
<param name="parameters">The parameters to pass to the resolution.</param>
|
3712
|
+
<param name="isOptional"><c>True</c> if the request is optional; otherwise, <c>false</c>.</param>
|
3713
|
+
<param name="isUnique"><c>True</c> if the request should return a unique result; otherwise, <c>false</c>.</param>
|
3714
|
+
<returns>The created request.</returns>
|
3715
|
+
</member>
|
3716
|
+
<member name="M:Ninject.KernelBase.GetBindings(System.Type)">
|
3717
|
+
<summary>
|
3718
|
+
Gets the bindings registered for the specified service.
|
3719
|
+
</summary>
|
3720
|
+
<param name="service">The service in question.</param>
|
3721
|
+
<returns>A series of bindings that are registered for the service.</returns>
|
3722
|
+
</member>
|
3723
|
+
<member name="M:Ninject.KernelBase.BeginBlock">
|
3724
|
+
<summary>
|
3725
|
+
Begins a new activation block, which can be used to deterministically dispose resolved instances.
|
3726
|
+
</summary>
|
3727
|
+
<returns>The new activation block.</returns>
|
3728
|
+
</member>
|
3729
|
+
<member name="M:Ninject.KernelBase.CreateBindingBuilder``1(Ninject.Planning.Bindings.IBinding)">
|
3730
|
+
<summary>
|
3731
|
+
Creates a new builder for the specified binding.
|
3732
|
+
</summary>
|
3733
|
+
<typeparam name="T">The type restriction to apply to the binding builder.</typeparam>
|
3734
|
+
<param name="binding">The binding that will be built.</param>
|
3735
|
+
<returns>The created builder.</returns>
|
3736
|
+
</member>
|
3737
|
+
<member name="M:Ninject.KernelBase.AddComponents">
|
3738
|
+
<summary>
|
3739
|
+
Adds components to the kernel during startup.
|
3740
|
+
</summary>
|
3741
|
+
</member>
|
3742
|
+
<member name="M:Ninject.KernelBase.HandleMissingBinding(System.Type)">
|
3743
|
+
<summary>
|
3744
|
+
Attempts to handle a missing binding for a service.
|
3745
|
+
</summary>
|
3746
|
+
<param name="service">The service.</param>
|
3747
|
+
<returns><c>True</c> if the missing binding can be handled; otherwise <c>false</c>.</returns>
|
3748
|
+
</member>
|
3749
|
+
<member name="M:Ninject.KernelBase.TypeIsSelfBindable(System.Type)">
|
3750
|
+
<summary>
|
3751
|
+
Returns a value indicating whether the specified service is self-bindable.
|
3752
|
+
</summary>
|
3753
|
+
<param name="service">The service.</param>
|
3754
|
+
<returns><see langword="True"/> if the type is self-bindable; otherwise <see langword="false"/>.</returns>
|
3755
|
+
</member>
|
3756
|
+
<member name="M:Ninject.KernelBase.CreateContext(Ninject.Activation.IRequest,Ninject.Planning.Bindings.IBinding)">
|
3757
|
+
<summary>
|
3758
|
+
Creates a context for the specified request and binding.
|
3759
|
+
</summary>
|
3760
|
+
<param name="request">The request.</param>
|
3761
|
+
<param name="binding">The binding.</param>
|
3762
|
+
<returns>The created context.</returns>
|
3763
|
+
</member>
|
3764
|
+
<member name="P:Ninject.KernelBase.Settings">
|
3765
|
+
<summary>
|
3766
|
+
Gets the kernel settings.
|
3767
|
+
</summary>
|
3768
|
+
</member>
|
3769
|
+
<member name="P:Ninject.KernelBase.Components">
|
3770
|
+
<summary>
|
3771
|
+
Gets the component container, which holds components that contribute to Ninject.
|
3772
|
+
</summary>
|
3773
|
+
</member>
|
3774
|
+
<member name="T:Ninject.NinjectSettings">
|
3775
|
+
<summary>
|
3776
|
+
Contains configuration options for Ninject.
|
3777
|
+
</summary>
|
3778
|
+
</member>
|
3779
|
+
<member name="M:Ninject.NinjectSettings.Get``1(System.String,``0)">
|
3780
|
+
<summary>
|
3781
|
+
Gets the value for the specified key.
|
3782
|
+
</summary>
|
3783
|
+
<typeparam name="T">The type of value to return.</typeparam>
|
3784
|
+
<param name="key">The setting's key.</param>
|
3785
|
+
<param name="defaultValue">The value to return if no setting is available.</param>
|
3786
|
+
<returns>The value, or the default value if none was found.</returns>
|
3787
|
+
</member>
|
3788
|
+
<member name="M:Ninject.NinjectSettings.Set(System.String,System.Object)">
|
3789
|
+
<summary>
|
3790
|
+
Sets the value for the specified key.
|
3791
|
+
</summary>
|
3792
|
+
<param name="key">The setting's key.</param>
|
3793
|
+
<param name="value">The setting's value.</param>
|
3794
|
+
</member>
|
3795
|
+
<member name="P:Ninject.NinjectSettings.InjectAttribute">
|
3796
|
+
<summary>
|
3797
|
+
Gets or sets the attribute that indicates that a member should be injected.
|
3798
|
+
</summary>
|
3799
|
+
</member>
|
3800
|
+
<member name="P:Ninject.NinjectSettings.CachePruningInterval">
|
3801
|
+
<summary>
|
3802
|
+
Gets or sets the interval at which the GC should be polled.
|
3803
|
+
</summary>
|
3804
|
+
</member>
|
3805
|
+
<member name="P:Ninject.NinjectSettings.UseReflectionBasedInjection">
|
3806
|
+
<summary>
|
3807
|
+
Gets a value indicating whether Ninject should use reflection-based injection instead of
|
3808
|
+
the (usually faster) lightweight code generation system.
|
3809
|
+
</summary>
|
3810
|
+
</member>
|
3811
|
+
<member name="P:Ninject.NinjectSettings.InjectNonPublic">
|
3812
|
+
<summary>
|
3813
|
+
Gets a value indicating whether Ninject should inject non public members.
|
3814
|
+
</summary>
|
3815
|
+
</member>
|
3816
|
+
<member name="T:Ninject.StandardKernel">
|
3817
|
+
<summary>
|
3818
|
+
The standard implementation of a kernel.
|
3819
|
+
</summary>
|
3820
|
+
</member>
|
3821
|
+
<member name="M:Ninject.StandardKernel.#ctor(Ninject.Modules.INinjectModule[])">
|
3822
|
+
<summary>
|
3823
|
+
Initializes a new instance of the <see cref="T:Ninject.StandardKernel"/> class.
|
3824
|
+
</summary>
|
3825
|
+
<param name="modules">The modules to load into the kernel.</param>
|
3826
|
+
</member>
|
3827
|
+
<member name="M:Ninject.StandardKernel.#ctor(Ninject.INinjectSettings,Ninject.Modules.INinjectModule[])">
|
3828
|
+
<summary>
|
3829
|
+
Initializes a new instance of the <see cref="T:Ninject.StandardKernel"/> class.
|
3830
|
+
</summary>
|
3831
|
+
<param name="settings">The configuration to use.</param>
|
3832
|
+
<param name="modules">The modules to load into the kernel.</param>
|
3833
|
+
</member>
|
3834
|
+
<member name="M:Ninject.StandardKernel.AddComponents">
|
3835
|
+
<summary>
|
3836
|
+
Adds components to the kernel during startup.
|
3837
|
+
</summary>
|
3838
|
+
</member>
|
3839
|
+
</members>
|
3840
|
+
</doc>
|