mvcturbine-ninject 2.1.0.0.20100820

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