forked from reactiveui/ReactiveUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNinject.Common.xml
More file actions
4176 lines (4174 loc) · 214 KB
/
Ninject.Common.xml
File metadata and controls
4176 lines (4174 loc) · 214 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>Ninject.Common</name>
</assembly>
<members>
<member name="T:Ninject.ActivationException">
<summary>
Indicates that an error occured during activation of an instance.
</summary>
</member>
<member name="M:Ninject.ActivationException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Ninject.ActivationException"/> class.
</summary>
</member>
<member name="M:Ninject.ActivationException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Ninject.ActivationException"/> class.
</summary>
<param name="message">The exception message.</param>
</member>
<member name="M:Ninject.ActivationException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:Ninject.ActivationException"/> class.
</summary>
<param name="message">The exception message.</param>
<param name="innerException">The inner exception.</param>
</member>
<member name="T:Ninject.Activation.Blocks.IActivationBlock">
<summary>
A block used for deterministic disposal of activated instances. When the block is
disposed, all instances activated via it will be deactivated.
</summary>
</member>
<member name="T:Ninject.Syntax.IResolutionRoot">
<summary>
Provides a path to resolve instances.
</summary>
</member>
<member name="T:Ninject.Syntax.IFluentSyntax">
<summary>
A hack to hide methods defined on <see cref="T:System.Object"/> for IntelliSense
on fluent interfaces. Credit to Daniel Cazzulino.
</summary>
</member>
<member name="M:Ninject.Syntax.IFluentSyntax.GetType">
<summary>
Gets the type of this instance.
</summary>
<returns>The type of this instance.</returns>
</member>
<member name="M:Ninject.Syntax.IFluentSyntax.GetHashCode">
<summary>
Returns a hash code for this instance.
</summary>
<returns>
A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
</returns>
</member>
<member name="M:Ninject.Syntax.IFluentSyntax.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents this instance.
</summary>
<returns>
A <see cref="T:System.String"/> that represents this instance.
</returns>
</member>
<member name="M:Ninject.Syntax.IFluentSyntax.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
</summary>
<param name="other">The <see cref="T:System.Object"/> to compare with this instance.</param>
<returns>
<c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:Ninject.Syntax.IResolutionRoot.CanResolve(Ninject.Activation.IRequest)">
<summary>
Determines whether the specified request can be resolved.
</summary>
<param name="request">The request.</param>
<returns><c>True</c> if the request can be resolved; otherwise, <c>false</c>.</returns>
</member>
<member name="M:Ninject.Syntax.IResolutionRoot.CanResolve(Ninject.Activation.IRequest,System.Boolean)">
<summary>
Determines whether the specified request can be resolved.
</summary>
<param name="request">The request.</param>
<param name="ignoreImplicitBindings">if set to <c>true</c> implicit bindings are ignored.</param>
<returns>
<c>True</c> if the request can be resolved; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:Ninject.Syntax.IResolutionRoot.Resolve(Ninject.Activation.IRequest)">
<summary>
Resolves instances for the specified request. The instances are not actually resolved
until a consumer iterates over the enumerator.
</summary>
<param name="request">The request to resolve.</param>
<returns>An enumerator of instances that match the request.</returns>
</member>
<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)">
<summary>
Creates a request for the specified service.
</summary>
<param name="service">The service that is being requested.</param>
<param name="constraint">The constraint to apply to the bindings to determine if they match the request.</param>
<param name="parameters">The parameters to pass to the resolution.</param>
<param name="isOptional"><c>True</c> if the request is optional; otherwise, <c>false</c>.</param>
<param name="isUnique"><c>True</c> if the request should return a unique result; otherwise, <c>false</c>.</param>
<returns>The created request.</returns>
</member>
<member name="T:Ninject.Infrastructure.Disposal.INotifyWhenDisposed">
<summary>
An object that fires an event when it is disposed.
</summary>
</member>
<member name="T:Ninject.Infrastructure.Disposal.IDisposableObject">
<summary>
An object that can report whether or not it is disposed.
</summary>
</member>
<member name="P:Ninject.Infrastructure.Disposal.IDisposableObject.IsDisposed">
<summary>
Gets a value indicating whether this instance is disposed.
</summary>
</member>
<member name="E:Ninject.Infrastructure.Disposal.INotifyWhenDisposed.Disposed">
<summary>
Occurs when the object is disposed.
</summary>
</member>
<member name="T:Ninject.Activation.Caching.IActivationCache">
<summary>
Stores the objects that were activated
</summary>
</member>
<member name="T:Ninject.Components.INinjectComponent">
<summary>
A component that contributes to the internals of Ninject.
</summary>
</member>
<member name="P:Ninject.Components.INinjectComponent.Settings">
<summary>
Gets or sets the settings.
</summary>
</member>
<member name="M:Ninject.Activation.Caching.IActivationCache.Clear">
<summary>
Clears the cache.
</summary>
</member>
<member name="M:Ninject.Activation.Caching.IActivationCache.AddActivatedInstance(System.Object)">
<summary>
Adds an activated instance.
</summary>
<param name="instance">The instance to be added.</param>
</member>
<member name="M:Ninject.Activation.Caching.IActivationCache.AddDeactivatedInstance(System.Object)">
<summary>
Adds an deactivated instance.
</summary>
<param name="instance">The instance to be added.</param>
</member>
<member name="M:Ninject.Activation.Caching.IActivationCache.IsActivated(System.Object)">
<summary>
Determines whether the specified instance is activated.
</summary>
<param name="instance">The instance.</param>
<returns>
<c>true</c> if the specified instance is activated; otherwise, <c>false</c>.
</returns>
</member>
<member name="M:Ninject.Activation.Caching.IActivationCache.IsDeactivated(System.Object)">
<summary>
Determines whether the specified instance is deactivated.
</summary>
<param name="instance">The instance.</param>
<returns>
<c>true</c> if the specified instance is deactivated; otherwise, <c>false</c>.
</returns>
</member>
<member name="T:Ninject.Activation.Caching.ICache">
<summary>
Tracks instances for re-use in certain scopes.
</summary>
</member>
<member name="T:Ninject.Activation.Caching.IPruneable">
<summary>
An object that is prunealble.
</summary>
</member>
<member name="M:Ninject.Activation.Caching.IPruneable.Prune">
<summary>
Removes instances from the cache which should no longer be re-used.
</summary>
</member>
<member name="M:Ninject.Activation.Caching.ICache.Remember(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
<summary>
Stores the specified instance in the cache.
</summary>
<param name="context">The context to store.</param>
<param name="reference">The instance reference.</param>
</member>
<member name="M:Ninject.Activation.Caching.ICache.TryGet(Ninject.Activation.IContext)">
<summary>
Tries to retrieve an instance to re-use in the specified context.
</summary>
<param name="context">The context that is being activated.</param>
<returns>The instance for re-use, or <see langword="null"/> if none has been stored.</returns>
</member>
<member name="M:Ninject.Activation.Caching.ICache.Release(System.Object)">
<summary>
Deactivates and releases the specified instance from the cache.
</summary>
<param name="instance">The instance to release.</param>
<returns><see langword="True"/> if the instance was found and released; otherwise <see langword="false"/>.</returns>
</member>
<member name="M:Ninject.Activation.Caching.ICache.Clear(System.Object)">
<summary>
Immediately deactivates and removes all instances in the cache that are owned by
the specified scope.
</summary>
<param name="scope">The scope whose instances should be deactivated.</param>
</member>
<member name="M:Ninject.Activation.Caching.ICache.Clear">
<summary>
Immediately deactivates and removes all instances in the cache, regardless of scope.
</summary>
</member>
<member name="P:Ninject.Activation.Caching.ICache.Count">
<summary>
Gets the number of entries currently stored in the cache.
</summary>
</member>
<member name="T:Ninject.Activation.Caching.ICachePruner">
<summary>
Prunes instances from an <see cref="T:Ninject.Activation.Caching.ICache"/> based on environmental information.
</summary>
</member>
<member name="M:Ninject.Activation.Caching.ICachePruner.Start(Ninject.Activation.Caching.IPruneable)">
<summary>
Starts pruning the specified cache based on the rules of the pruner.
</summary>
<param name="cache">The cache that will be pruned.</param>
</member>
<member name="M:Ninject.Activation.Caching.ICachePruner.Stop">
<summary>
Stops pruning.
</summary>
</member>
<member name="T:Ninject.Activation.IContext">
<summary>
Contains information about the activation of a single instance.
</summary>
</member>
<member name="M:Ninject.Activation.IContext.GetProvider">
<summary>
Gets the provider that should be used to create the instance for this context.
</summary>
<returns>The provider that should be used.</returns>
</member>
<member name="M:Ninject.Activation.IContext.GetScope">
<summary>
Gets the scope for the context that "owns" the instance activated therein.
</summary>
<returns>The object that acts as the scope.</returns>
</member>
<member name="M:Ninject.Activation.IContext.Resolve">
<summary>
Resolves this instance for this context.
</summary>
<returns>The resolved instance.</returns>
</member>
<member name="P:Ninject.Activation.IContext.Kernel">
<summary>
Gets the kernel that is driving the activation.
</summary>
</member>
<member name="P:Ninject.Activation.IContext.Request">
<summary>
Gets the request.
</summary>
</member>
<member name="P:Ninject.Activation.IContext.Binding">
<summary>
Gets the binding.
</summary>
</member>
<member name="P:Ninject.Activation.IContext.Plan">
<summary>
Gets or sets the activation plan.
</summary>
</member>
<member name="P:Ninject.Activation.IContext.Parameters">
<summary>
Gets the parameters that were passed to manipulate the activation process.
</summary>
</member>
<member name="P:Ninject.Activation.IContext.GenericArguments">
<summary>
Gets the generic arguments for the request, if any.
</summary>
</member>
<member name="P:Ninject.Activation.IContext.HasInferredGenericArguments">
<summary>
Gets a value indicating whether the request involves inferred generic arguments.
</summary>
</member>
<member name="T:Ninject.Activation.InstanceReference">
<summary>
Holds an instance during activation or after it has been cached.
</summary>
</member>
<member name="M:Ninject.Activation.InstanceReference.Is``1">
<summary>
Returns a value indicating whether the instance is of the specified type.
</summary>
<typeparam name="T">The type in question.</typeparam>
<returns><see langword="True"/> if the instance is of the specified type, otherwise <see langword="false"/>.</returns>
</member>
<member name="M:Ninject.Activation.InstanceReference.As``1">
<summary>
Returns the instance as the specified type.
</summary>
<typeparam name="T">The requested type.</typeparam>
<returns>The instance.</returns>
</member>
<member name="M:Ninject.Activation.InstanceReference.IfInstanceIs``1(System.Action{``0})">
<summary>
Executes the specified action if the instance if of the specified type.
</summary>
<typeparam name="T">The type in question.</typeparam>
<param name="action">The action to execute.</param>
</member>
<member name="P:Ninject.Activation.InstanceReference.Instance">
<summary>
Gets or sets the instance.
</summary>
</member>
<member name="T:Ninject.Activation.IPipeline">
<summary>
Drives the activation (injection, etc.) of an instance.
</summary>
</member>
<member name="M:Ninject.Activation.IPipeline.Activate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
<summary>
Activates the instance in the specified context.
</summary>
<param name="context">The context.</param>
<param name="reference">The instance reference.</param>
</member>
<member name="M:Ninject.Activation.IPipeline.Deactivate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
<summary>
Deactivates the instance in the specified context.
</summary>
<param name="context">The context.</param>
<param name="reference">The instance reference.</param>
</member>
<member name="P:Ninject.Activation.IPipeline.Strategies">
<summary>
Gets the strategies that contribute to the activation and deactivation processes.
</summary>
</member>
<member name="T:Ninject.Activation.IProvider">
<summary>
Creates instances of services.
</summary>
</member>
<member name="M:Ninject.Activation.IProvider.Create(Ninject.Activation.IContext)">
<summary>
Creates an instance within the specified context.
</summary>
<param name="context">The context.</param>
<returns>The created instance.</returns>
</member>
<member name="P:Ninject.Activation.IProvider.Type">
<summary>
Gets the type (or prototype) of instances the provider creates.
</summary>
</member>
<member name="T:Ninject.Activation.IProvider`1">
<summary>
Provides instances ot the type T
</summary>
<typeparam name="T">The type provides by this implementation.</typeparam>
</member>
<member name="T:Ninject.Activation.IRequest">
<summary>
Describes the request for a service resolution.
</summary>
</member>
<member name="M:Ninject.Activation.IRequest.Matches(Ninject.Planning.Bindings.IBinding)">
<summary>
Determines whether the specified binding satisfies the constraint defined on this request.
</summary>
<param name="binding">The binding.</param>
<returns><c>True</c> if the binding satisfies the constraint; otherwise <c>false</c>.</returns>
</member>
<member name="M:Ninject.Activation.IRequest.GetScope">
<summary>
Gets the scope if one was specified in the request.
</summary>
<returns>The object that acts as the scope.</returns>
</member>
<member name="M:Ninject.Activation.IRequest.CreateChild(System.Type,Ninject.Activation.IContext,Ninject.Planning.Targets.ITarget)">
<summary>
Creates a child request.
</summary>
<param name="service">The service that is being requested.</param>
<param name="parentContext">The context in which the request was made.</param>
<param name="target">The target that will receive the injection.</param>
<returns>The child request.</returns>
</member>
<member name="P:Ninject.Activation.IRequest.Service">
<summary>
Gets the service that was requested.
</summary>
</member>
<member name="P:Ninject.Activation.IRequest.ParentRequest">
<summary>
Gets the parent request.
</summary>
</member>
<member name="P:Ninject.Activation.IRequest.ParentContext">
<summary>
Gets the parent context.
</summary>
</member>
<member name="P:Ninject.Activation.IRequest.Target">
<summary>
Gets the target that will receive the injection, if any.
</summary>
</member>
<member name="P:Ninject.Activation.IRequest.Constraint">
<summary>
Gets the constraint that will be applied to filter the bindings used for the request.
</summary>
</member>
<member name="P:Ninject.Activation.IRequest.Parameters">
<summary>
Gets the parameters that affect the resolution.
</summary>
</member>
<member name="P:Ninject.Activation.IRequest.ActiveBindings">
<summary>
Gets the stack of bindings which have been activated by either this request or its ancestors.
</summary>
</member>
<member name="P:Ninject.Activation.IRequest.Depth">
<summary>
Gets the recursive depth at which this request occurs.
</summary>
</member>
<member name="P:Ninject.Activation.IRequest.IsOptional">
<summary>
Gets or sets value indicating whether the request is optional.
</summary>
</member>
<member name="P:Ninject.Activation.IRequest.IsUnique">
<summary>
Gets or sets value indicating whether the request should return a unique result.
</summary>
</member>
<member name="T:Ninject.Activation.Provider`1">
<summary>
A simple abstract provider for instances of a specific type.
</summary>
<typeparam name="T">The type of instances the provider creates.</typeparam>
</member>
<member name="M:Ninject.Activation.Provider`1.Create(Ninject.Activation.IContext)">
<summary>
Creates an instance within the specified context.
</summary>
<param name="context">The context.</param>
<returns>The created instance.</returns>
</member>
<member name="M:Ninject.Activation.Provider`1.CreateInstance(Ninject.Activation.IContext)">
<summary>
Creates an instance within the specified context.
</summary>
<param name="context">The context.</param>
<returns>The created instance.</returns>
</member>
<member name="P:Ninject.Activation.Provider`1.Type">
<summary>
Gets the type (or prototype) of instances the provider creates.
</summary>
</member>
<member name="T:Ninject.Activation.Providers.CallbackProvider`1">
<summary>
A provider that delegates to a callback method to create instances.
</summary>
<typeparam name="T">The type of instances the provider creates.</typeparam>
</member>
<member name="M:Ninject.Activation.Providers.CallbackProvider`1.#ctor(System.Func{Ninject.Activation.IContext,`0})">
<summary>
Initializes a new instance of the CallbackProvider<T> class.
</summary>
<param name="method">The callback method that will be called to create instances.</param>
</member>
<member name="M:Ninject.Activation.Providers.CallbackProvider`1.CreateInstance(Ninject.Activation.IContext)">
<summary>
Invokes the callback method to create an instance.
</summary>
<param name="context">The context.</param>
<returns>The created instance.</returns>
</member>
<member name="P:Ninject.Activation.Providers.CallbackProvider`1.Method">
<summary>
Gets the callback method used by the provider.
</summary>
</member>
<member name="T:Ninject.Activation.Providers.ConstantProvider`1">
<summary>
A provider that always returns the same constant value.
</summary>
<typeparam name="T">The type of value that is returned.</typeparam>
</member>
<member name="M:Ninject.Activation.Providers.ConstantProvider`1.#ctor(`0)">
<summary>
Initializes a new instance of the ConstantProvider<T> class.
</summary>
<param name="value">The value that the provider should return.</param>
</member>
<member name="M:Ninject.Activation.Providers.ConstantProvider`1.CreateInstance(Ninject.Activation.IContext)">
<summary>
Creates an instance within the specified context.
</summary>
<param name="context">The context.</param>
<returns>The constant value this provider returns.</returns>
</member>
<member name="P:Ninject.Activation.Providers.ConstantProvider`1.Value">
<summary>
Gets the value that the provider will return.
</summary>
</member>
<member name="T:Ninject.Activation.Providers.StandardProvider">
<summary>
The standard provider for types, which activates instances via a <see cref="T:Ninject.Activation.IPipeline"/>.
</summary>
</member>
<member name="M:Ninject.Activation.Providers.StandardProvider.#ctor(System.Type,Ninject.Planning.IPlanner,Ninject.Selection.Heuristics.IConstructorScorer)">
<summary>
Initializes a new instance of the <see cref="T:Ninject.Activation.Providers.StandardProvider"/> class.
</summary>
<param name="type">The type (or prototype) of instances the provider creates.</param>
<param name="planner">The planner component.</param>
<param name="constructorScorer">The constructor scorer component.</param>
</member>
<member name="M:Ninject.Activation.Providers.StandardProvider.Create(Ninject.Activation.IContext)">
<summary>
Creates an instance within the specified context.
</summary>
<param name="context">The context.</param>
<returns>The created instance.</returns>
</member>
<member name="M:Ninject.Activation.Providers.StandardProvider.GetValue(Ninject.Activation.IContext,Ninject.Planning.Targets.ITarget)">
<summary>
Gets the value to inject into the specified target.
</summary>
<param name="context">The context.</param>
<param name="target">The target.</param>
<returns>The value to inject into the specified target.</returns>
</member>
<member name="M:Ninject.Activation.Providers.StandardProvider.GetImplementationType(System.Type)">
<summary>
Gets the implementation type that the provider will activate an instance of
for the specified service.
</summary>
<param name="service">The service in question.</param>
<returns>The implementation type that will be activated.</returns>
</member>
<member name="M:Ninject.Activation.Providers.StandardProvider.GetCreationCallback(System.Type)">
<summary>
Gets a callback that creates an instance of the <see cref="T:Ninject.Activation.Providers.StandardProvider"/>
for the specified type.
</summary>
<param name="prototype">The prototype the provider instance will create.</param>
<returns>The created callback.</returns>
</member>
<member name="M:Ninject.Activation.Providers.StandardProvider.GetCreationCallback(System.Type,System.Reflection.ConstructorInfo)">
<summary>
Gets a callback that creates an instance of the <see cref="T:Ninject.Activation.Providers.StandardProvider"/>
for the specified type and constructor.
</summary>
<param name="prototype">The prototype the provider instance will create.</param>
<param name="constructor">The constructor.</param>
<returns>The created callback.</returns>
</member>
<member name="P:Ninject.Activation.Providers.StandardProvider.Type">
<summary>
Gets the type (or prototype) of instances the provider creates.
</summary>
</member>
<member name="P:Ninject.Activation.Providers.StandardProvider.Planner">
<summary>
Gets or sets the planner component.
</summary>
</member>
<member name="P:Ninject.Activation.Providers.StandardProvider.ConstructorScorer">
<summary>
Gets or sets the selector component.
</summary>
</member>
<member name="T:Ninject.Activation.Strategies.IActivationStrategy">
<summary>
Contributes to a <see cref="T:Ninject.Activation.IPipeline"/>, and is called during the activation
and deactivation of an instance.
</summary>
</member>
<member name="M:Ninject.Activation.Strategies.IActivationStrategy.Activate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
<summary>
Contributes to the activation of the instance in the specified context.
</summary>
<param name="context">The context.</param>
<param name="reference">A reference to the instance being activated.</param>
</member>
<member name="M:Ninject.Activation.Strategies.IActivationStrategy.Deactivate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
<summary>
Contributes to the deactivation of the instance in the specified context.
</summary>
<param name="context">The context.</param>
<param name="reference">A reference to the instance being deactivated.</param>
</member>
<member name="T:Ninject.ConstraintAttribute">
<summary>
Defines a constraint on the decorated member.
</summary>
</member>
<member name="M:Ninject.ConstraintAttribute.Matches(Ninject.Planning.Bindings.IBindingMetadata)">
<summary>
Determines whether the specified binding metadata matches the constraint.
</summary>
<param name="metadata">The metadata in question.</param>
<returns><c>True</c> if the metadata matches; otherwise <c>false</c>.</returns>
</member>
<member name="T:Ninject.InjectAttribute">
<summary>
Indicates that the decorated member should be injected.
</summary>
</member>
<member name="T:Ninject.NamedAttribute">
<summary>
Indicates that the decorated member should only be injected using binding(s) registered
with the specified name.
</summary>
</member>
<member name="M:Ninject.NamedAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Ninject.NamedAttribute"/> class.
</summary>
<param name="name">The name of the binding(s) to use.</param>
</member>
<member name="M:Ninject.NamedAttribute.Matches(Ninject.Planning.Bindings.IBindingMetadata)">
<summary>
Determines whether the specified binding metadata matches the constraint.
</summary>
<param name="metadata">The metadata in question.</param>
<returns><c>True</c> if the metadata matches; otherwise <c>false</c>.</returns>
</member>
<member name="P:Ninject.NamedAttribute.Name">
<summary>
Gets the binding name.
</summary>
</member>
<member name="T:Ninject.OptionalAttribute">
<summary>
Indicates that the decorated member represents an optional dependency.
</summary>
</member>
<member name="T:Ninject.Components.IComponentContainer">
<summary>
An internal container that manages and resolves components that contribute to Ninject.
</summary>
</member>
<member name="M:Ninject.Components.IComponentContainer.Add``2">
<summary>
Registers a component in the container.
</summary>
<typeparam name="TComponent">The component type.</typeparam>
<typeparam name="TImplementation">The component's implementation type.</typeparam>
</member>
<member name="M:Ninject.Components.IComponentContainer.RemoveAll``1">
<summary>
Removes all registrations for the specified component.
</summary>
<typeparam name="T">The component type.</typeparam>
</member>
<member name="M:Ninject.Components.IComponentContainer.RemoveAll(System.Type)">
<summary>
Removes all registrations for the specified component.
</summary>
<param name="component">The component's type.</param>
</member>
<member name="M:Ninject.Components.IComponentContainer.Get``1">
<summary>
Gets one instance of the specified component.
</summary>
<typeparam name="T">The component type.</typeparam>
<returns>The instance of the component.</returns>
</member>
<member name="M:Ninject.Components.IComponentContainer.GetAll``1">
<summary>
Gets all available instances of the specified component.
</summary>
<typeparam name="T">The component type.</typeparam>
<returns>A series of instances of the specified component.</returns>
</member>
<member name="M:Ninject.Components.IComponentContainer.Get(System.Type)">
<summary>
Gets one instance of the specified component.
</summary>
<param name="component">The component type.</param>
<returns>The instance of the component.</returns>
</member>
<member name="M:Ninject.Components.IComponentContainer.GetAll(System.Type)">
<summary>
Gets all available instances of the specified component.
</summary>
<param name="component">The component type.</param>
<returns>A series of instances of the specified component.</returns>
</member>
<member name="M:Ninject.Components.IComponentContainer.AddTransient``2">
<summary>
Registers a transient component in the container.
</summary>
<typeparam name="TComponent">The component type.</typeparam>
<typeparam name="TImplementation">The component's implementation type.</typeparam>
</member>
<member name="P:Ninject.Components.IComponentContainer.Kernel">
<summary>
Gets or sets the kernel that owns the component container.
</summary>
</member>
<member name="T:Ninject.Components.NinjectComponent">
<summary>
A component that contributes to the internals of Ninject.
</summary>
</member>
<member name="T:Ninject.Infrastructure.Disposal.DisposableObject">
<summary>
An object that notifies when it is disposed.
</summary>
</member>
<member name="M:Ninject.Infrastructure.Disposal.DisposableObject.Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
</member>
<member name="M:Ninject.Infrastructure.Disposal.DisposableObject.Dispose(System.Boolean)">
<summary>
Releases resources held by the object.
</summary>
</member>
<member name="M:Ninject.Infrastructure.Disposal.DisposableObject.Finalize">
<summary>
Releases resources before the object is reclaimed by garbage collection.
</summary>
</member>
<member name="P:Ninject.Infrastructure.Disposal.DisposableObject.IsDisposed">
<summary>
Gets a value indicating whether this instance is disposed.
</summary>
</member>
<member name="P:Ninject.Components.NinjectComponent.Settings">
<summary>
Gets or sets the settings.
</summary>
</member>
<member name="T:Ninject.IInitializable">
<summary>
A service that requires initialization after it is activated.
</summary>
</member>
<member name="M:Ninject.IInitializable.Initialize">
<summary>
Initializes the instance. Called during activation.
</summary>
</member>
<member name="T:Ninject.IKernel">
<summary>
A super-factory that can create objects of all kinds, following hints provided by <see cref="T:Ninject.Planning.Bindings.IBinding"/>s.
</summary>
</member>
<member name="T:Ninject.Syntax.IBindingRoot">
<summary>
Provides a path to register bindings.
</summary>
</member>
<member name="M:Ninject.Syntax.IBindingRoot.Bind``1">
<summary>
Declares a binding for the specified service.
</summary>
<typeparam name="T">The service to bind.</typeparam>
<returns>The fluent syntax.</returns>
</member>
<member name="M:Ninject.Syntax.IBindingRoot.Bind``2">
<summary>
Declares a binding for the specified service.
</summary>
<typeparam name="T1">The first service to bind.</typeparam>
<typeparam name="T2">The second service to bind.</typeparam>
<returns>The fluent syntax.</returns>
</member>
<member name="M:Ninject.Syntax.IBindingRoot.Bind``3">
<summary>
Declares a binding for the specified service.
</summary>
<typeparam name="T1">The first service to bind.</typeparam>
<typeparam name="T2">The second service to bind.</typeparam>
<typeparam name="T3">The third service to bind.</typeparam>
<returns>The fluent syntax.</returns>
</member>
<member name="M:Ninject.Syntax.IBindingRoot.Bind``4">
<summary>
Declares a binding for the specified service.
</summary>
<typeparam name="T1">The first service to bind.</typeparam>
<typeparam name="T2">The second service to bind.</typeparam>
<typeparam name="T3">The third service to bind.</typeparam>
<typeparam name="T4">The fourth service to bind.</typeparam>
<returns>The fluent syntax.</returns>
</member>
<member name="M:Ninject.Syntax.IBindingRoot.Bind(System.Type[])">
<summary>
Declares a binding from the service to itself.
</summary>
<param name="services">The services to bind.</param>
<returns>The fluent syntax.</returns>
</member>
<member name="M:Ninject.Syntax.IBindingRoot.Unbind``1">
<summary>
Unregisters all bindings for the specified service.
</summary>
<typeparam name="T">The service to unbind.</typeparam>
</member>
<member name="M:Ninject.Syntax.IBindingRoot.Unbind(System.Type)">
<summary>
Unregisters all bindings for the specified service.
</summary>
<param name="service">The service to unbind.</param>
</member>
<member name="M:Ninject.Syntax.IBindingRoot.Rebind``1">
<summary>
Removes any existing bindings for the specified service, and declares a new one.
</summary>
<typeparam name="T1">The first service to re-bind.</typeparam>
<returns>The fluent syntax.</returns>
</member>
<member name="M:Ninject.Syntax.IBindingRoot.Rebind``2">
<summary>
Removes any existing bindings for the specified services, and declares a new one.
</summary>
<typeparam name="T1">The first service to re-bind.</typeparam>
<typeparam name="T2">The second service to re-bind.</typeparam>
<returns>The fluent syntax.</returns>
</member>
<member name="M:Ninject.Syntax.IBindingRoot.Rebind``3">
<summary>
Removes any existing bindings for the specified services, and declares a new one.
</summary>
<typeparam name="T1">The first service to re-bind.</typeparam>
<typeparam name="T2">The second service to re-bind.</typeparam>
<typeparam name="T3">The third service to re-bind.</typeparam>
<returns>The fluent syntax.</returns>
</member>
<member name="M:Ninject.Syntax.IBindingRoot.Rebind``4">
<summary>
Removes any existing bindings for the specified services, and declares a new one.
</summary>
<typeparam name="T1">The first service to re-bind.</typeparam>
<typeparam name="T2">The second service to re-bind.</typeparam>
<typeparam name="T3">The third service to re-bind.</typeparam>
<typeparam name="T4">The fourth service to re-bind.</typeparam>
<returns>The fluent syntax.</returns>
</member>
<member name="M:Ninject.Syntax.IBindingRoot.Rebind(System.Type[])">
<summary>
Removes any existing bindings for the specified services, and declares a new one.
</summary>
<param name="services">The services to re-bind.</param>
<returns>The fluent syntax.</returns>
</member>
<member name="M:Ninject.Syntax.IBindingRoot.AddBinding(Ninject.Planning.Bindings.IBinding)">
<summary>
Registers the specified binding.
</summary>
<param name="binding">The binding to add.</param>
</member>
<member name="M:Ninject.Syntax.IBindingRoot.RemoveBinding(Ninject.Planning.Bindings.IBinding)">
<summary>
Unregisters the specified binding.
</summary>
<param name="binding">The binding to remove.</param>
</member>
<member name="M:Ninject.IKernel.GetModules">
<summary>
Gets the modules that have been loaded into the kernel.
</summary>
<returns>A series of loaded modules.</returns>
</member>
<member name="M:Ninject.IKernel.HasModule(System.String)">
<summary>
Determines whether a module with the specified name has been loaded in the kernel.
</summary>
<param name="name">The name of the module.</param>
<returns><c>True</c> if the specified module has been loaded; otherwise, <c>false</c>.</returns>
</member>
<member name="M:Ninject.IKernel.Load(System.Collections.Generic.IEnumerable{Ninject.Modules.INinjectModule})">
<summary>
Loads the module(s) into the kernel.
</summary>
<param name="m">The modules to load.</param>
</member>
<member name="M:Ninject.IKernel.Load(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Loads modules from the files that match the specified pattern(s).
</summary>
<param name="filePatterns">The file patterns (i.e. "*.dll", "modules/*.rb") to match.</param>
</member>
<member name="M:Ninject.IKernel.Load(System.Collections.Generic.IEnumerable{System.Reflection.Assembly})">
<summary>
Loads modules defined in the specified assemblies.
</summary>
<param name="assemblies">The assemblies to search.</param>
</member>
<member name="M:Ninject.IKernel.Unload(System.String)">
<summary>
Unloads the plugin with the specified name.
</summary>
<param name="name">The plugin's name.</param>
</member>
<member name="M:Ninject.IKernel.Inject(System.Object,Ninject.Parameters.IParameter[])">
<summary>
Injects the specified existing instance, without managing its lifecycle.
</summary>
<param name="instance">The instance to inject.</param>
<param name="parameters">The parameters to pass to the request.</param>
</member>
<member name="M:Ninject.IKernel.Release(System.Object)">
<summary>
Deactivates and releases the specified instance if it is currently managed by Ninject.
</summary>
<param name="instance">The instance to release.</param>
<returns><see langword="True"/> if the instance was found and released; otherwise <see langword="false"/>.</returns>
</member>
<member name="M:Ninject.IKernel.GetBindings(System.Type)">
<summary>
Gets the bindings registered for the specified service.
</summary>
<param name="service">The service in question.</param>
<returns>A series of bindings that are registered for the service.</returns>
</member>
<member name="M:Ninject.IKernel.BeginBlock">
<summary>
Begins a new activation block, which can be used to deterministically dispose resolved instances.
</summary>
<returns>The new activation block.</returns>
</member>
<member name="P:Ninject.IKernel.Settings">
<summary>
Gets the kernel settings.
</summary>
</member>
<member name="P:Ninject.IKernel.Components">
<summary>
Gets the component container, which holds components that contribute to Ninject.
</summary>
</member>
<member name="T:Ninject.Infrastructure.IHaveBindingConfiguration">
<summary>
Indicates the object has a reference to a <see cref="T:Ninject.Planning.Bindings.IBinding"/>.
</summary>
</member>
<member name="P:Ninject.Infrastructure.IHaveBindingConfiguration.BindingConfiguration">
<summary>
Gets the binding.
</summary>
</member>
<member name="T:Ninject.Infrastructure.IHaveKernel">
<summary>
Indicates that the object has a reference to an <see cref="T:Ninject.IKernel"/>.
</summary>
</member>
<member name="P:Ninject.Infrastructure.IHaveKernel.Kernel">
<summary>
Gets the kernel.
</summary>
</member>
<member name="T:Ninject.Infrastructure.Introspection.ExceptionFormatter">
<summary>
Provides meaningful exception messages.
</summary>
</member>
<member name="M:Ninject.Infrastructure.Introspection.ExceptionFormatter.ModulesWithNullOrEmptyNamesAreNotSupported">
<summary>
Generates a message saying that modules without names are not supported.
</summary>