ninject 2.0.0.0.20100801

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