-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNinject.xml
6191 lines (6191 loc) · 312 KB
/
Ninject.xml
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>C:\Projects\Ninject\ninject\build\mono-2.0\release\Ninject</name>
</assembly>
<members>
<member name="T:Ninject.Activation.Blocks.ActivationBlock">
<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="M:Ninject.Activation.Blocks.ActivationBlock.#ctor(Ninject.Syntax.IResolutionRoot)">
<summary>
Initializes a new instance of the <see cref="T:Ninject.Activation.Blocks.ActivationBlock" /> class.
</summary>
<param name="parent">The parent resolution root.</param>
</member>
<member name="E:Ninject.Activation.Blocks.ActivationBlock.Disposed">
<summary>
Occurs when the object is disposed.
</summary>
</member>
<member name="P:Ninject.Activation.Blocks.ActivationBlock.Parent">
<summary>
Gets or sets the parent resolution root (usually the kernel).
</summary>
</member>
<member name="M:Ninject.Activation.Blocks.ActivationBlock.Dispose(System.Boolean)">
<summary>
Releases resources held by the object.
</summary>
</member>
<member name="M:Ninject.Activation.Blocks.ActivationBlock.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.Activation.Blocks.ActivationBlock.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.Activation.Blocks.ActivationBlock.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.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)">
<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.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.Activation.Caching.ActivationCache">
<summary>
Stores the objects that were activated
</summary>
</member>
<member name="M:Ninject.Activation.Caching.ActivationCache.#ctor(Ninject.Activation.Caching.ICachePruner)">
<summary>
Initializes a new instance of the <see cref="T:Ninject.Activation.Caching.ActivationCache" /> class.
</summary>
<param name="cachePruner">The cache pruner.</param>
</member>
<member name="F:Ninject.Activation.Caching.ActivationCache.activatedObjects">
<summary>
The objects that were activated as reference equal weak references.
</summary>
</member>
<member name="F:Ninject.Activation.Caching.ActivationCache.deactivatedObjects">
<summary>
The objects that were activated as reference equal weak references.
</summary>
</member>
<member name="P:Ninject.Activation.Caching.ActivationCache.ActivatedObjectCount">
<summary>
Gets the activated object count.
</summary>
<value>The activated object count.</value>
</member>
<member name="P:Ninject.Activation.Caching.ActivationCache.DeactivatedObjectCount">
<summary>
Gets the deactivated object count.
</summary>
<value>The deactivated object count.</value>
</member>
<member name="M:Ninject.Activation.Caching.ActivationCache.Clear">
<summary>
Clears the cache.
</summary>
</member>
<member name="M:Ninject.Activation.Caching.ActivationCache.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.ActivationCache.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.ActivationCache.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.ActivationCache.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="M:Ninject.Activation.Caching.ActivationCache.Prune">
<summary>
Prunes this instance.
</summary>
</member>
<member name="M:Ninject.Activation.Caching.ActivationCache.RemoveDeadObjects(System.Collections.Generic.IDictionary{System.Object,System.Boolean})">
<summary>
Removes all dead objects.
</summary>
<param name="objects">The objects collection to be freed of dead objects.</param>
</member>
<member name="T:Ninject.Activation.Caching.Cache">
<summary>
Tracks instances for re-use in certain scopes.
</summary>
</member>
<member name="M:Ninject.Activation.Caching.Cache.#ctor(Ninject.Activation.IPipeline,Ninject.Activation.Caching.ICachePruner)">
<summary>
Initializes a new instance of the <see cref="T:Ninject.Activation.Caching.Cache" /> class.
</summary>
<param name="pipeline">The pipeline component.</param>
<param name="cachePruner">The cache pruner component.</param>
</member>
<member name="T:Ninject.Activation.Caching.Cache.CacheEntry">
<summary>
An entry in the cache.
</summary>
</member>
<member name="M:Ninject.Activation.Caching.Cache.CacheEntry.#ctor(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
<summary>
Initializes a new instance of the <see cref="T:Ninject.Activation.Caching.Cache.CacheEntry" /> class.
</summary>
<param name="context">The context.</param>
<param name="reference">The instance reference.</param>
</member>
<member name="P:Ninject.Activation.Caching.Cache.CacheEntry.Context">
<summary>
Gets the context of the instance.
</summary>
<value>The context.</value>
</member>
<member name="P:Ninject.Activation.Caching.Cache.CacheEntry.Reference">
<summary>
Gets the instance reference.
</summary>
<value>The instance reference.</value>
</member>
<member name="F:Ninject.Activation.Caching.Cache.entries">
<summary>
Contains all cached instances.
This is a dictionary of scopes to a multimap for bindings to cache entries.
</summary>
</member>
<member name="P:Ninject.Activation.Caching.Cache.Pipeline">
<summary>
Gets the pipeline component.
</summary>
</member>
<member name="P:Ninject.Activation.Caching.Cache.Count">
<summary>
Gets the number of entries currently stored in the cache.
</summary>
</member>
<member name="M:Ninject.Activation.Caching.Cache.Dispose(System.Boolean)">
<summary>
Releases resources held by the object.
</summary>
<param name="disposing">
</param>
</member>
<member name="M:Ninject.Activation.Caching.Cache.Remember(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
<summary>
Stores the specified context 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.Cache.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.Cache.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.Cache.Prune">
<summary>
Removes instances from the cache which should no longer be re-used.
</summary>
</member>
<member name="M:Ninject.Activation.Caching.Cache.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.Cache.Clear">
<summary>
Immediately deactivates and removes all instances in the cache, regardless of scope.
</summary>
</member>
<member name="M:Ninject.Activation.Caching.Cache.GetAllBindingEntries(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{Ninject.Planning.Bindings.IBindingConfiguration,System.Collections.Generic.ICollection{Ninject.Activation.Caching.Cache.CacheEntry}}})">
<summary>
Gets all entries for a binding withing the selected scope.
</summary>
<param name="bindings">The bindings.</param>
<returns>All bindings of a binding.</returns>
</member>
<member name="M:Ninject.Activation.Caching.Cache.GetAllCacheEntries">
<summary>
Gets all cache entries.
</summary>
<returns>Returns all cache entries.</returns>
</member>
<member name="M:Ninject.Activation.Caching.Cache.Forget(System.Collections.Generic.IEnumerable{Ninject.Activation.Caching.Cache.CacheEntry})">
<summary>
Forgets the specified cache entries.
</summary>
<param name="cacheEntries">The cache entries.</param>
</member>
<member name="M:Ninject.Activation.Caching.Cache.Forget(Ninject.Activation.Caching.Cache.CacheEntry)">
<summary>
Forgets the specified entry.
</summary>
<param name="entry">The entry.</param>
</member>
<member name="T:Ninject.Activation.Caching.GarbageCollectionCachePruner">
<summary>
Uses a <see cref="T:System.Threading.Timer" /> and some <see cref="T:System.WeakReference" /> magic to poll
the garbage collector to see if it has run.
</summary>
</member>
<member name="F:Ninject.Activation.Caching.GarbageCollectionCachePruner.indicator">
<summary>
indicator for if GC has been run.
</summary>
</member>
<member name="F:Ninject.Activation.Caching.GarbageCollectionCachePruner.caches">
<summary>
The caches that are being pruned.
</summary>
</member>
<member name="F:Ninject.Activation.Caching.GarbageCollectionCachePruner.timer">
<summary>
The timer used to trigger the cache pruning
</summary>
</member>
<member name="M:Ninject.Activation.Caching.GarbageCollectionCachePruner.Dispose(System.Boolean)">
<summary>
Releases resources held by the object.
</summary>
</member>
<member name="M:Ninject.Activation.Caching.GarbageCollectionCachePruner.Start(Ninject.Activation.Caching.IPruneable)">
<summary>
Starts pruning the specified pruneable based on the rules of the pruner.
</summary>
<param name="pruneable">The pruneable that will be pruned.</param>
</member>
<member name="M:Ninject.Activation.Caching.GarbageCollectionCachePruner.Stop">
<summary>
Stops pruning.
</summary>
</member>
<member name="T:Ninject.Activation.Caching.IActivationCache">
<summary>
Stores the objects that were activated
</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="P:Ninject.Activation.Caching.ICache.Count">
<summary>
Gets the number of entries currently stored in the cache.
</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="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.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="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="P:Ninject.Activation.Providers.CallbackProvider`1.Method">
<summary>
Gets the callback method used by the provider.
</summary>
</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="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="P:Ninject.Activation.Providers.ConstantProvider`1.Value">
<summary>
Gets the value that the provider will return.
</summary>
</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="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="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="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="T:Ninject.Activation.Strategies.ActivationCacheStrategy">
<summary>
Adds all activated instances to the activation cache.
</summary>
</member>
<member name="M:Ninject.Activation.Strategies.ActivationCacheStrategy.#ctor(Ninject.Activation.Caching.IActivationCache)">
<summary>
Initializes a new instance of the <see cref="T:Ninject.Activation.Strategies.ActivationCacheStrategy" /> class.
</summary>
<param name="activationCache">The activation cache.</param>
</member>
<member name="F:Ninject.Activation.Strategies.ActivationCacheStrategy.activationCache">
<summary>
The activation cache.
</summary>
</member>
<member name="P:Ninject.Activation.Strategies.ActivationCacheStrategy.Settings">
<summary>
Gets or sets the settings.
</summary>
<value>The ninject settings.</value>
</member>
<member name="M:Ninject.Activation.Strategies.ActivationCacheStrategy.Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
</member>
<member name="M:Ninject.Activation.Strategies.ActivationCacheStrategy.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.ActivationCacheStrategy.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.Activation.Strategies.ActivationStrategy">
<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.ActivationStrategy.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.ActivationStrategy.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.Activation.Strategies.BindingActionStrategy">
<summary>
Executes actions defined on the binding during activation and deactivation.
</summary>
</member>
<member name="M:Ninject.Activation.Strategies.BindingActionStrategy.Activate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
<summary>
Calls the activation actions defined on the binding.
</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.BindingActionStrategy.Deactivate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
<summary>
Calls the deactivation actions defined on the binding.
</summary>
<param name="context">The context.</param>
<param name="reference">A reference to the instance being deactivated.</param>
</member>
<member name="T:Ninject.Activation.Strategies.DisposableStrategy">
<summary>
During deactivation, disposes instances that implement <see cref="T:System.IDisposable" />.
</summary>
</member>
<member name="M:Ninject.Activation.Strategies.DisposableStrategy.Deactivate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
<summary>
Disposes the specified instance.
</summary>
<param name="context">The context.</param>
<param name="reference">A reference to the instance being deactivated.</param>
</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.Activation.Strategies.InitializableStrategy">
<summary>
During activation, initializes instances that implement <see cref="T:Ninject.IInitializable" />.
</summary>
</member>
<member name="M:Ninject.Activation.Strategies.InitializableStrategy.Activate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
<summary>
Initializes the specified instance.
</summary>
<param name="context">The context.</param>
<param name="reference">A reference to the instance being activated.</param>
</member>
<member name="T:Ninject.Activation.Strategies.MethodInjectionStrategy">
<summary>
Injects methods on an instance during activation.
</summary>
</member>
<member name="M:Ninject.Activation.Strategies.MethodInjectionStrategy.Activate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
<summary>
Injects values into the properties as described by <see cref="T:Ninject.Planning.Directives.MethodInjectionDirective" />s
contained in the plan.
</summary>
<param name="context">The context.</param>
<param name="reference">A reference to the instance being activated.</param>
</member>
<member name="T:Ninject.Activation.Strategies.PropertyInjectionStrategy">
<summary>
Injects properties on an instance during activation.
</summary>
</member>
<member name="M:Ninject.Activation.Strategies.PropertyInjectionStrategy.#ctor(Ninject.Injection.IInjectorFactory)">
<summary>
Initializes a new instance of the <see cref="T:Ninject.Activation.Strategies.PropertyInjectionStrategy" /> class.
</summary>
<param name="injectorFactory">The injector factory component.</param>
</member>
<member name="P:Ninject.Activation.Strategies.PropertyInjectionStrategy.InjectorFactory">
<summary>
Gets the injector factory component.
</summary>
</member>
<member name="M:Ninject.Activation.Strategies.PropertyInjectionStrategy.Activate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
<summary>
Injects values into the properties as described by <see cref="T:Ninject.Planning.Directives.PropertyInjectionDirective" />s
contained in the plan.
</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.PropertyInjectionStrategy.AssignProperyOverrides(Ninject.Activation.IContext,Ninject.Activation.InstanceReference,System.Collections.Generic.IEnumerable{Ninject.Parameters.IParameter})">
<summary>
Applies user supplied override values to instance properties.
</summary>
<param name="context">The context.</param>
<param name="reference">A reference to the instance being activated.</param>
<param name="propertyValues">The parameter ovverride value accessors.</param>
</member>
<member name="M:Ninject.Activation.Strategies.PropertyInjectionStrategy.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="T:Ninject.Activation.Strategies.StartableStrategy">
<summary>
Starts instances that implement <see cref="T:Ninject.IStartable" /> during activation,
and stops them during deactivation.
</summary>
</member>
<member name="M:Ninject.Activation.Strategies.StartableStrategy.Activate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
<summary>
Starts the specified instance.
</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.StartableStrategy.Deactivate(Ninject.Activation.IContext,Ninject.Activation.InstanceReference)">
<summary>
Stops the specified instance.
</summary>
<param name="context">The context.</param>
<param name="reference">A reference to the instance being deactivated.</param>
</member>
<member name="T:Ninject.Activation.Context">
<summary>
Contains information about the activation of a single instance.
</summary>
</member>
<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)">
<summary>
Initializes a new instance of the <see cref="T:Ninject.Activation.Context" /> class.
</summary>
<param name="kernel">The kernel managing the resolution.</param>
<param name="request">The context's request.</param>
<param name="binding">The context's binding.</param>
<param name="cache">The cache component.</param>
<param name="planner">The planner component.</param>
<param name="pipeline">The pipeline component.</param>
</member>
<member name="P:Ninject.Activation.Context.Kernel">
<summary>
Gets the kernel that is driving the activation.
</summary>
</member>
<member name="P:Ninject.Activation.Context.Request">
<summary>
Gets the request.
</summary>
</member>
<member name="P:Ninject.Activation.Context.Binding">
<summary>
Gets the binding.
</summary>
</member>
<member name="P:Ninject.Activation.Context.Plan">
<summary>
Gets or sets the activation plan.
</summary>
</member>
<member name="P:Ninject.Activation.Context.Parameters">
<summary>
Gets the parameters that were passed to manipulate the activation process.
</summary>
</member>
<member name="P:Ninject.Activation.Context.GenericArguments">
<summary>
Gets the generic arguments for the request, if any.
</summary>
</member>
<member name="P:Ninject.Activation.Context.HasInferredGenericArguments">
<summary>
Gets a value indicating whether the request involves inferred generic arguments.
</summary>
</member>
<member name="P:Ninject.Activation.Context.Cache">
<summary>
Gets or sets the cache component.
</summary>
</member>
<member name="P:Ninject.Activation.Context.Planner">
<summary>
Gets or sets the planner component.
</summary>
</member>
<member name="P:Ninject.Activation.Context.Pipeline">
<summary>
Gets or sets the pipeline component.
</summary>
</member>
<member name="M:Ninject.Activation.Context.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.Context.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.Context.Resolve">
<summary>
Resolves the instance associated with this hook.
</summary>
<returns>The resolved instance.</returns>
</member>
<member name="T:Ninject.Activation.IContext">
<summary>
Contains information about the activation of a single instance.
</summary>
</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="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="T:Ninject.Activation.InstanceReference">
<summary>
Holds an instance during activation or after it has been cached.
</summary>
</member>
<member name="P:Ninject.Activation.InstanceReference.Instance">
<summary>
Gets or sets the instance.
</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="T:Ninject.Activation.IPipeline">
<summary>
Drives the activation (injection, etc.) of an instance.
</summary>
</member>
<member name="P:Ninject.Activation.IPipeline.Strategies">
<summary>
Gets the strategies that contribute to the activation and deactivation processes.
</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="T:Ninject.Activation.IProvider">
<summary>
Creates instances of services.
</summary>
</member>
<member name="P:Ninject.Activation.IProvider.Type">
<summary>
Gets the type (or prototype) of instances the provider creates.
</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="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="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>