castle.windsor 2.5.0.0 → 2.5.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (36) hide show
  1. data/docs/Changes.txt +44 -0
  2. data/docs/releaseNotes.txt +1 -0
  3. data/lib/ASL - Apache Software Foundation License.txt +57 -0
  4. data/lib/Silverlight3/Castle.Windsor.dll +0 -0
  5. data/lib/Silverlight3/Castle.Windsor.pdb +0 -0
  6. data/lib/Silverlight3/Castle.Windsor.xml +902 -642
  7. data/lib/Silverlight4/Castle.Windsor.dll +0 -0
  8. data/lib/Silverlight4/Castle.Windsor.pdb +0 -0
  9. data/lib/Silverlight4/Castle.Windsor.xml +907 -642
  10. data/lib/dotNet35/Castle.Windsor.dll +0 -0
  11. data/lib/dotNet35/Castle.Windsor.pdb +0 -0
  12. data/lib/dotNet35/Castle.Windsor.xml +725 -748
  13. data/lib/dotNet35/loggingFacility/Castle.Facilities.Logging.dll +0 -0
  14. data/lib/dotNet35/loggingFacility/Castle.Facilities.Logging.pdb +0 -0
  15. data/lib/dotNet35/loggingFacility/Castle.Facilities.Logging.xml +3 -3
  16. data/lib/dotNet35/synchronizeFacility/Castle.Facilities.Synchronize.dll +0 -0
  17. data/lib/dotNet35/synchronizeFacility/Castle.Facilities.Synchronize.pdb +0 -0
  18. data/lib/dotNet40/Castle.Windsor.dll +0 -0
  19. data/lib/dotNet40/Castle.Windsor.pdb +0 -0
  20. data/lib/dotNet40/Castle.Windsor.xml +725 -748
  21. data/lib/dotNet40/loggingFacility/Castle.Facilities.Logging.dll +0 -0
  22. data/lib/dotNet40/loggingFacility/Castle.Facilities.Logging.pdb +0 -0
  23. data/lib/dotNet40/loggingFacility/Castle.Facilities.Logging.xml +3 -3
  24. data/lib/dotNet40/synchronizeFacility/Castle.Facilities.Synchronize.dll +0 -0
  25. data/lib/dotNet40/synchronizeFacility/Castle.Facilities.Synchronize.pdb +0 -0
  26. data/lib/dotNet40ClientProfile/Castle.Windsor.dll +0 -0
  27. data/lib/dotNet40ClientProfile/Castle.Windsor.pdb +0 -0
  28. data/lib/dotNet40ClientProfile/Castle.Windsor.xml +726 -749
  29. data/lib/dotNet40ClientProfile/synchronizeFacility/Castle.Facilities.Synchronize.dll +0 -0
  30. data/lib/dotNet40ClientProfile/synchronizeFacility/Castle.Facilities.Synchronize.pdb +0 -0
  31. metadata +9 -12
  32. data/lib/Silverlight3/BreakingChanges.txt +0 -229
  33. data/lib/Silverlight4/BreakingChanges.txt +0 -229
  34. data/lib/dotNet35/BreakingChanges.txt +0 -229
  35. data/lib/dotNet40/BreakingChanges.txt +0 -229
  36. data/lib/dotNet40ClientProfile/BreakingChanges.txt +0 -229
@@ -1,4 +1,48 @@
1
+ 2.5.1 (2010-09-21)
2
+ ==================
3
+
4
+ - added "Potential lifestyle mismatches" debugger view item, that will detect and list situations where Singleton depends on Transient or PerWebRequest component (which is usually a bug)
5
+
6
+ - fixed issue where forwarding main type would create additional, superfluous handler
7
+
8
+ - WebLogger/WebLoggerFactory was removed from Castle.Core so all references to that are removed from Windsor as well
9
+
10
+ - obseleted UseSingleProxyInterface in preference over IProxyGenerationHook
11
+
12
+ - fixed IOC-220 Composite pattern with CollectionResolver should be properly supported without throwing "cycle detected" exception
13
+
14
+ - fixed IOC-218 Enable methods that take arguments as anonymous objects in Silverlight version. This works in SL, but requires [assembly: InternalsVisibleTo(Castle.Core.Internal.InternalsVisible.ToCastleCore)]
15
+
16
+ - fixed IOC-217 Enable ISupportInitialize support as lifecyclecle concern in Silverlight 4
17
+
18
+ - implemented IOC-216 Make it possible to specify service overrides in DependsOn, either via Property, or ServiceOverride entry class
19
+
20
+ - implemented IOC-215 Hide obsolete members from IntelliSense (in basic view. By default in VB they won't be showed, but will in C# :( )
21
+
22
+ - fixed IOC-214 Missing bracket in obsolete warning text
23
+
24
+ - implemented IOC-212 Add ability to make IProxyGenerationHooks and IInterceptoSelectors IOnBehalfAware
25
+
26
+ - fixed IOC-211 Resolve doesn't work with constructor's ref argument
27
+
28
+ - fixed IOC-210 Typed Factory Facility treats constructor dependency as non-optional if resolved as a TFF component
29
+
30
+ - fixed IOC-209 Bug in constructor selection when resolving - Windsor would pick unresolvable constructor
31
+
32
+ - reverted back (to the way it was in v2.1) conditional registration of helper components used by TypedFactoryFacility as it would cause issues when used with nested containers (see the new test and thread "Typed Factories in sub Container (differences between 2.5 and 2.1)" on users group)
33
+
34
+ - added framework information the assembly was built for to the AssemblyTitle attribute
35
+
36
+ - improved how late bound types are displayed in debugger
37
+
38
+ - fixed bug where count of potentially misconfigured components would show invalid value
39
+
40
+ - added raw handler access to default component view in debugger
41
+
42
+ - changed how status message is displayed for potentially misconfigured components so that an actual visualizer for strings can be used to view this potentially long piece of text
43
+
1
44
  2.5.0 (2010-08-21)
45
+ ==================
2
46
 
3
47
  - debugger view support has been extracted to a separate subsystem (IContainerDebuggerExtensionHost) and can be extended by users code via IContainerDebuggerExtension and IComponentDebuggerExtension
4
48
 
@@ -1,5 +1,6 @@
1
1
  You can find full list of changes in changes.txt, list of breaking changes in breakingchanges.txt.
2
2
 
3
+ Issue tracker: http://issues.castleproject.org/dashboard
3
4
  Online release note: http://stw.castleproject.org/Windsor.Windsor_25_release_notes.ashx
4
5
  Documentation: http://stw.castleproject.org/Windsor.MainPage.ashx
5
6
  Samples: http://stw.castleproject.org/Windsor.MainPage.ashx?#Samples_8
@@ -0,0 +1,57 @@
1
+ Apache License, Version 2.0
2
+
3
+ Apache License
4
+ Version 2.0, January 2004
5
+ http://www.apache.org/licenses/
6
+
7
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
8
+
9
+ 1. Definitions.
10
+
11
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
16
+
17
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
18
+
19
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
20
+
21
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
22
+
23
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
24
+
25
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
26
+
27
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
28
+
29
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
30
+
31
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
32
+
33
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
34
+
35
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
36
+
37
+ 1. You must give any other recipients of the Work or Derivative Works a copy of this License; and
38
+
39
+ 2. You must cause any modified files to carry prominent notices stating that You changed the files; and
40
+
41
+ 3. You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
42
+
43
+ 4. If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
44
+
45
+ You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
46
+
47
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
48
+
49
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
50
+
51
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
52
+
53
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
54
+
55
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
56
+
57
+ END OF TERMS AND CONDITIONS
@@ -121,7 +121,7 @@
121
121
  is created. Those are for example components instantiated via abstract factory.
122
122
  </summary>
123
123
  </member>
124
- <member name="M:Castle.Core.Internal.ReflectionUtil.GetCompatibileArrayItemType(System.Type)">
124
+ <member name="M:Castle.Core.Internal.ReflectionUtil.GetCompatibleArrayItemType(System.Type)">
125
125
  <summary>
126
126
  If the extended type is a Foo[] or IEnumerable{Foo} which is assignable from Foo[] this method will return typeof(Foo)
127
127
  otherwise <c>null</c>.
@@ -421,7 +421,7 @@
421
421
  </member>
422
422
  <member name="M:Castle.MicroKernel.ComponentActivator.DefaultComponentActivator.#ctor(Castle.Core.ComponentModel,Castle.MicroKernel.IKernel,Castle.MicroKernel.ComponentInstanceDelegate,Castle.MicroKernel.ComponentInstanceDelegate)">
423
423
  <summary>
424
- Initializes a new instance of the <see cref="T:Castle.MicroKernel.ComponentActivator.DefaultComponentActivator"/> class.
424
+ Initializes a new instance of the <see cref="T:Castle.MicroKernel.ComponentActivator.DefaultComponentActivator"/> class.
425
425
  </summary>
426
426
  <param name="model"></param>
427
427
  <param name="kernel"></param>
@@ -512,6 +512,14 @@
512
512
  </summary>
513
513
  <value>The type of the target.</value>
514
514
  </member>
515
+ <member name="P:Castle.Core.DependencyModel.TargetItemType">
516
+ <summary>
517
+ Gets the service type of the dependency.
518
+ This is the same type as <see cref="P:Castle.Core.DependencyModel.TargetType"/> or if <see cref="P:Castle.Core.DependencyModel.TargetType"/> is by ref,
519
+ then it's the element type of the reference. (in other words if dependency
520
+ is <c>out IFoo foo</c> this will be <c>IFoo</c>, while <see cref="P:Castle.Core.DependencyModel.TargetType"/> will be <c>&amp;IFoo</c>);
521
+ </summary>
522
+ </member>
515
523
  <member name="P:Castle.Core.DependencyModel.IsOptional">
516
524
  <summary>
517
525
  Gets or sets whether this dependency is optional.
@@ -668,6 +676,11 @@
668
676
  <param name="dependenciesChecked">list of the dependecies that was already checked, used to avoid cycles.</param>
669
677
  </summary>
670
678
  </member>
679
+ <member name="F:Castle.MicroKernel.Handlers.AbstractHandler.lifestyleManager">
680
+ <summary>
681
+ Lifestyle manager instance
682
+ </summary>
683
+ </member>
671
684
  <member name="F:Castle.MicroKernel.Handlers.AbstractHandler.customParameters">
672
685
  <summary>
673
686
  Custom dependencies values associated with the handler
@@ -685,43 +698,19 @@
685
698
  <see cref="T:Castle.Core.DependencyModel"/>
686
699
  </summary>
687
700
  </member>
688
- <member name="F:Castle.MicroKernel.Handlers.AbstractHandler.lifestyleManager">
689
- <summary>
690
- Lifestyle manager instance
691
- </summary>
692
- </member>
693
701
  <member name="M:Castle.MicroKernel.Handlers.AbstractHandler.#ctor(Castle.Core.ComponentModel)">
694
702
  <summary>
695
703
  Constructs and initializes the handler
696
704
  </summary>
697
705
  <param name = "model"></param>
698
706
  </member>
699
- <member name="M:Castle.MicroKernel.Handlers.AbstractHandler.Init(Castle.MicroKernel.IKernel)">
700
- <summary>
701
- Saves the kernel instance, subscribes to
702
- <see cref="E:Castle.MicroKernel.IKernelEvents.AddedAsChildKernel"/>
703
- event,
704
- creates the lifestyle manager instance and computes
705
- the handler state.
706
- </summary>
707
- <param name="kernel"></param>
708
- </member>
709
- <member name="M:Castle.MicroKernel.Handlers.AbstractHandler.Resolve(Castle.MicroKernel.Context.CreationContext)">
710
- <summary>
711
- Returns an instance of the component this handler
712
- is responsible for
713
- </summary>
714
- <param name = "context"></param>
715
- <returns></returns>
716
- </member>
717
- <member name="M:Castle.MicroKernel.Handlers.AbstractHandler.Resolve(Castle.MicroKernel.Context.CreationContext,System.Boolean)">
707
+ <member name="M:Castle.MicroKernel.Handlers.AbstractHandler.ReleaseCore(System.Object)">
718
708
  <summary>
719
- Returns an instance of the component this handler
720
- is responsible for
709
+ Should be implemented by derived classes:
710
+ disposes the component instance (or recycle it)
721
711
  </summary>
722
- <param name="context"></param>
723
- <param name="instanceRequired">when <c>false</c>, handler can not create valid instance and return <c>null</c> instead </param>
724
- <returns></returns>
712
+ <param name = "instance"></param>
713
+ <returns>true if destroyed.</returns>
725
714
  </member>
726
715
  <member name="M:Castle.MicroKernel.Handlers.AbstractHandler.ResolveCore(Castle.MicroKernel.Context.CreationContext,System.Boolean,System.Boolean)">
727
716
  <summary>
@@ -731,50 +720,54 @@
731
720
  </summary>
732
721
  <param name = "context"></param>
733
722
  <param name = "requiresDecommission"></param>
734
- <param name="instanceRequired">When <c>false</c>, handler can not create valid instance and return <c>null</c> instead.</param>
723
+ <param name = "instanceRequired">When <c>false</c>, handler can not create valid instance and return <c>null</c> instead.</param>
735
724
  <returns></returns>
736
725
  </member>
737
- <member name="M:Castle.MicroKernel.Handlers.AbstractHandler.Release(System.Object)">
726
+ <member name="M:Castle.MicroKernel.Handlers.AbstractHandler.ObtainDependencyDetails(System.Collections.IList)">
738
727
  <summary>
739
- disposes the component instance (or recycle it).
728
+ Returns human readable list of dependencies
729
+ this handler is waiting for.
740
730
  </summary>
741
- <param name = "instance"></param>
742
731
  <returns></returns>
743
732
  </member>
744
- <member name="M:Castle.MicroKernel.Handlers.AbstractHandler.ReleaseCore(System.Object)">
745
- <summary>
746
- Should be implemented by derived classes:
747
- disposes the component instance (or recycle it)
748
- </summary>
749
- <param name = "instance"></param>
750
- <returns>true if destroyed.</returns>
751
- </member>
752
- <member name="M:Castle.MicroKernel.Handlers.AbstractHandler.AddCustomDependencyValue(System.Object,System.Object)">
733
+ <member name="M:Castle.MicroKernel.Handlers.AbstractHandler.Init(Castle.MicroKernel.IKernel)">
753
734
  <summary>
754
- TODO: Pendent
735
+ Saves the kernel instance, subscribes to
736
+ <see cref="E:Castle.MicroKernel.IKernelEvents.AddedAsChildKernel"/>
737
+ event,
738
+ creates the lifestyle manager instance and computes
739
+ the handler state.
755
740
  </summary>
756
- <param name = "key"></param>
757
- <param name = "value"></param>
741
+ <param name="kernel"></param>
758
742
  </member>
759
- <member name="M:Castle.MicroKernel.Handlers.AbstractHandler.HasCustomParameter(System.Object)">
743
+ <member name="M:Castle.MicroKernel.Handlers.AbstractHandler.Release(System.Object)">
760
744
  <summary>
761
- TODO: Pendent
745
+ disposes the component instance (or recycle it).
762
746
  </summary>
763
- <param name = "key"></param>
747
+ <param name = "instance"></param>
764
748
  <returns></returns>
765
749
  </member>
766
- <member name="M:Castle.MicroKernel.Handlers.AbstractHandler.RemoveCustomDependencyValue(System.Object)">
750
+ <member name="M:Castle.MicroKernel.Handlers.AbstractHandler.Resolve(Castle.MicroKernel.Context.CreationContext)">
767
751
  <summary>
768
- TODO: Pendent
752
+ Returns an instance of the component this handler
753
+ is responsible for
769
754
  </summary>
770
- <param name = "key"></param>
755
+ <param name = "context"></param>
756
+ <returns></returns>
771
757
  </member>
772
- <member name="M:Castle.MicroKernel.Handlers.AbstractHandler.ObtainDependencyDetails(System.Collections.IList)">
758
+ <member name="M:Castle.MicroKernel.Handlers.AbstractHandler.AddDependency(Castle.Core.DependencyModel)">
773
759
  <summary>
774
- Returns human readable list of dependencies
775
- this handler is waiting for.
760
+ Invoked by
761
+ <see cref="M:Castle.MicroKernel.Handlers.AbstractHandler.EnsureDependenciesCanBeSatisfied(Castle.MicroKernel.ComponentActivator.IDependencyAwareActivator)"/>
762
+ in order to check if a dependency can be satisfied.
763
+ If not, the handler is set to a 'waiting dependency' state.
776
764
  </summary>
777
- <returns></returns>
765
+ <remarks>
766
+ This method registers the dependencies within the correct collection
767
+ or dictionary and changes the handler state to
768
+ <see cref="F:Castle.MicroKernel.HandlerState.WaitingDependency"/>
769
+ </remarks>
770
+ <param name="dependency"></param>
778
771
  </member>
779
772
  <member name="M:Castle.MicroKernel.Handlers.AbstractHandler.CreateLifestyleManager(Castle.MicroKernel.IComponentActivator)">
780
773
  <summary>
@@ -790,30 +783,6 @@
790
783
  <param name="activator"></param>
791
784
  <returns></returns>
792
785
  </member>
793
- <member name="M:Castle.MicroKernel.Handlers.AbstractHandler.EnsureDependenciesCanBeSatisfied(Castle.MicroKernel.ComponentActivator.IDependencyAwareActivator)">
794
- <summary>
795
- Checks if the handler is able to, at very least, satisfy
796
- the dependencies for the constructor with less parameters
797
- </summary>
798
- <remarks>
799
- For each non*optional dependency, the implementation will invoke
800
- <see cref="M:Castle.MicroKernel.Handlers.AbstractHandler.AddDependency(Castle.Core.DependencyModel)"/>
801
- </remarks>
802
- </member>
803
- <member name="M:Castle.MicroKernel.Handlers.AbstractHandler.AddDependency(Castle.Core.DependencyModel)">
804
- <summary>
805
- Invoked by
806
- <see cref="M:Castle.MicroKernel.Handlers.AbstractHandler.EnsureDependenciesCanBeSatisfied(Castle.MicroKernel.ComponentActivator.IDependencyAwareActivator)"/>
807
- in order to check if a dependency can be satisfied.
808
- If not, the handler is set to a 'waiting dependency' state.
809
- </summary>
810
- <remarks>
811
- This method registers the dependencies within the correct collection
812
- or dictionary and changes the handler state to
813
- <see cref="F:Castle.MicroKernel.HandlerState.WaitingDependency"/>
814
- </remarks>
815
- <param name="dependency"></param>
816
- </member>
817
786
  <member name="M:Castle.MicroKernel.Handlers.AbstractHandler.DependencySatisfied(System.Boolean@)">
818
787
  <summary>
819
788
  Invoked by the kernel
@@ -826,6 +795,16 @@
826
795
  </remarks>
827
796
  <param name="stateChanged"></param>
828
797
  </member>
798
+ <member name="M:Castle.MicroKernel.Handlers.AbstractHandler.EnsureDependenciesCanBeSatisfied(Castle.MicroKernel.ComponentActivator.IDependencyAwareActivator)">
799
+ <summary>
800
+ Checks if the handler is able to, at very least, satisfy
801
+ the dependencies for the constructor with less parameters
802
+ </summary>
803
+ <remarks>
804
+ For each non*optional dependency, the implementation will invoke
805
+ <see cref="M:Castle.MicroKernel.Handlers.AbstractHandler.AddDependency(Castle.Core.DependencyModel)"/>
806
+ </remarks>
807
+ </member>
829
808
  <member name="M:Castle.MicroKernel.Handlers.AbstractHandler.OnAddedAsChildKernel(System.Object,System.EventArgs)">
830
809
  <summary>
831
810
  Invoked when the container receives a parent container reference.
@@ -837,6 +816,15 @@
837
816
  <param name = "sender"></param>
838
817
  <param name = "e"></param>
839
818
  </member>
819
+ <member name="M:Castle.MicroKernel.Handlers.AbstractHandler.Resolve(Castle.MicroKernel.Context.CreationContext,System.Boolean)">
820
+ <summary>
821
+ Returns an instance of the component this handler
822
+ is responsible for
823
+ </summary>
824
+ <param name = "context"></param>
825
+ <param name = "instanceRequired">when <c>false</c>, handler can not create valid instance and return <c>null</c> instead </param>
826
+ <returns></returns>
827
+ </member>
840
828
  <member name="M:Castle.MicroKernel.Handlers.AbstractHandler.HandlerStateChanged(System.Object,System.EventArgs)">
841
829
  <summary>
842
830
  Handler for the event
@@ -845,18 +833,14 @@
845
833
  <param name="source"></param>
846
834
  <param name="args"></param>
847
835
  </member>
848
- <member name="P:Castle.MicroKernel.Handlers.AbstractHandler.CurrentState">
849
- <summary>
850
- Gets the handler state.
851
- </summary>
852
- </member>
853
836
  <member name="P:Castle.MicroKernel.Handlers.AbstractHandler.ComponentModel">
854
837
  <summary>
855
838
  Gets the component model.
856
839
  </summary>
857
840
  </member>
858
- <member name="E:Castle.MicroKernel.Handlers.AbstractHandler.OnHandlerStateChanged">
841
+ <member name="P:Castle.MicroKernel.Handlers.AbstractHandler.CurrentState">
859
842
  <summary>
843
+ Gets the handler state.
860
844
  </summary>
861
845
  </member>
862
846
  <member name="M:Castle.MicroKernel.Handlers.DefaultHandler.#ctor(Castle.Core.ComponentModel)">
@@ -949,9 +933,9 @@
949
933
  </member>
950
934
  <member name="T:Castle.MicroKernel.DefaultKernel">
951
935
  <summary>
952
- Default implementation of <see cref="T:Castle.MicroKernel.IKernel"/>.
953
- This implementation is complete and also support a kernel
954
- hierarchy (sub containers).
936
+ Default implementation of <see cref="T:Castle.MicroKernel.IKernel"/>.
937
+ This implementation is complete and also support a kernel
938
+ hierarchy (sub containers).
955
939
  </summary>
956
940
  <summary>
957
941
  Default implementation of <see cref="T:Castle.MicroKernel.IKernel"/>.
@@ -1083,6 +1067,15 @@
1083
1067
  <param name="service"></param>
1084
1068
  <param name="dependencies"></param>
1085
1069
  </member>
1070
+ <member name="M:Castle.MicroKernel.IKernel.RegisterCustomDependencies(System.Type,System.Object)">
1071
+ <summary>
1072
+ Associates objects with a component handler,
1073
+ allowing it to use the specified dictionary
1074
+ when resolving dependencies
1075
+ </summary>
1076
+ <param name="service"></param>
1077
+ <param name="dependenciesAsAnonymousType"></param>
1078
+ </member>
1086
1079
  <member name="M:Castle.MicroKernel.IKernel.RegisterCustomDependencies(System.String,System.Collections.IDictionary)">
1087
1080
  <summary>
1088
1081
  Associates objects with a component handler,
@@ -1092,6 +1085,15 @@
1092
1085
  <param name="key"></param>
1093
1086
  <param name="dependencies"></param>
1094
1087
  </member>
1088
+ <member name="M:Castle.MicroKernel.IKernel.RegisterCustomDependencies(System.String,System.Object)">
1089
+ <summary>
1090
+ Associates objects with a component handler,
1091
+ allowing it to use the specified dictionary
1092
+ when resolving dependencies
1093
+ </summary>
1094
+ <param name="key"></param>
1095
+ <param name="dependenciesAsAnonymousType"></param>
1096
+ </member>
1095
1097
  <member name="M:Castle.MicroKernel.IKernel.ReleaseComponent(System.Object)">
1096
1098
  <summary>
1097
1099
  Releases a component instance. This allows
@@ -1504,6 +1506,14 @@
1504
1506
  <param name="service">The service type</param>
1505
1507
  <param name="arguments">Arguments to resolve the services</param>
1506
1508
  </member>
1509
+ <member name="M:Castle.MicroKernel.IKernel.ResolveAll(System.Type,System.Object)">
1510
+ <summary>
1511
+ Returns all the valid component instances by
1512
+ the service type
1513
+ </summary>
1514
+ <param name="service">The service type</param>
1515
+ <param name="argumentsAsAnonymousType">Arguments to resolve the services</param>
1516
+ </member>
1507
1517
  <member name="M:Castle.MicroKernel.IKernel.Resolve(System.Type,System.Collections.IDictionary)">
1508
1518
  <summary>
1509
1519
  Returns the component instance by the service type
@@ -1522,6 +1532,24 @@
1522
1532
  <param name="arguments"></param>
1523
1533
  <returns></returns>
1524
1534
  </member>
1535
+ <member name="M:Castle.MicroKernel.IKernel.Resolve(System.Type,System.Object)">
1536
+ <summary>
1537
+ Returns the component instance by the service type
1538
+ using dynamic arguments
1539
+ </summary>
1540
+ <param name="service">Service to resolve</param>
1541
+ <param name="argumentsAsAnonymousType">Arguments to resolve the services</param>
1542
+ <returns></returns>
1543
+ </member>
1544
+ <member name="M:Castle.MicroKernel.IKernel.Resolve(System.String,System.Object)">
1545
+ <summary>
1546
+ Returns the component instance by the component key
1547
+ using dynamic arguments
1548
+ </summary>
1549
+ <param name="key">Key to resolve</param>
1550
+ <param name="argumentsAsAnonymousType">Arguments to resolve the services</param>
1551
+ <returns></returns>
1552
+ </member>
1525
1553
  <member name="M:Castle.MicroKernel.IKernel.Resolve(System.String,System.Type)">
1526
1554
  <summary>
1527
1555
  Returns a component instance by the key
@@ -1538,6 +1566,14 @@
1538
1566
  <param name="arguments"></param>
1539
1567
  <returns></returns>
1540
1568
  </member>
1569
+ <member name="M:Castle.MicroKernel.IKernel.Resolve``1(System.Object)">
1570
+ <summary>
1571
+ Returns the component instance by the service type
1572
+ using dynamic arguments
1573
+ </summary>
1574
+ <param name="argumentsAsAnonymousType">Arguments to resolve the services</param>
1575
+ <returns></returns>
1576
+ </member>
1541
1577
  <member name="M:Castle.MicroKernel.IKernel.Resolve``1">
1542
1578
  <summary>
1543
1579
  Returns the component instance by the component key
@@ -1575,6 +1611,13 @@
1575
1611
  <typeparam name="TService"></typeparam>
1576
1612
  <returns></returns>
1577
1613
  </member>
1614
+ <member name="M:Castle.MicroKernel.IKernel.ResolveAll``1(System.Object)">
1615
+ <summary>
1616
+ Returns component instances that implement TService
1617
+ </summary>
1618
+ <typeparam name="TService"></typeparam>
1619
+ <returns></returns>
1620
+ </member>
1578
1621
  <member name="M:Castle.MicroKernel.IKernel.Resolve(System.String,System.Type,System.Collections.IDictionary)">
1579
1622
  <summary>
1580
1623
  Returns a component instance by the key
@@ -1671,161 +1714,176 @@
1671
1714
  </summary>
1672
1715
  <param name="model"></param>
1673
1716
  </member>
1674
- <member name="F:Castle.MicroKernel.DefaultKernel.parentKernel">
1717
+ <member name="F:Castle.MicroKernel.DefaultKernel.childKernels">
1675
1718
  <summary>
1676
- The parent kernel, if exists.
1719
+ List of sub containers.
1677
1720
  </summary>
1678
1721
  </member>
1679
- <member name="F:Castle.MicroKernel.DefaultKernel.handlerFactory">
1722
+ <member name="F:Castle.MicroKernel.DefaultKernel.facilities">
1680
1723
  <summary>
1681
- The implementation of <see cref="T:Castle.MicroKernel.IHandlerFactory"/>
1724
+ List of <see cref="T:Castle.MicroKernel.IFacility"/> registered.
1682
1725
  </summary>
1683
1726
  </member>
1684
- <member name="F:Castle.MicroKernel.DefaultKernel.modelBuilder">
1727
+ <member name="F:Castle.MicroKernel.DefaultKernel.handlerFactory">
1685
1728
  <summary>
1686
- The implementation of <see cref="T:Castle.MicroKernel.IComponentModelBuilder"/>
1729
+ The implementation of <see cref="T:Castle.MicroKernel.IHandlerFactory"/>
1687
1730
  </summary>
1688
1731
  </member>
1689
1732
  <member name="F:Castle.MicroKernel.DefaultKernel.resolver">
1690
1733
  <summary>
1691
- The dependency resolver.
1734
+ The dependency resolver.
1692
1735
  </summary>
1693
1736
  </member>
1694
- <member name="F:Castle.MicroKernel.DefaultKernel.releaserPolicy">
1737
+ <member name="F:Castle.MicroKernel.DefaultKernel.subsystems">
1695
1738
  <summary>
1696
- Implements a policy to control component's
1697
- disposal that the usef forgot.
1739
+ Map of subsystems registered.
1698
1740
  </summary>
1699
1741
  </member>
1700
- <member name="F:Castle.MicroKernel.DefaultKernel.proxyFactory">
1742
+ <member name="F:Castle.MicroKernel.DefaultKernel.modelBuilder">
1701
1743
  <summary>
1702
- Holds the implementation of <see cref="T:Castle.MicroKernel.IProxyFactory"/>
1744
+ The implementation of <see cref="T:Castle.MicroKernel.IComponentModelBuilder"/>
1703
1745
  </summary>
1704
1746
  </member>
1705
- <member name="F:Castle.MicroKernel.DefaultKernel.facilities">
1747
+ <member name="F:Castle.MicroKernel.DefaultKernel.parentKernel">
1706
1748
  <summary>
1707
- List of <see cref="T:Castle.MicroKernel.IFacility"/> registered.
1749
+ The parent kernel, if exists.
1708
1750
  </summary>
1709
1751
  </member>
1710
- <member name="F:Castle.MicroKernel.DefaultKernel.subsystems">
1752
+ <member name="F:Castle.MicroKernel.DefaultKernel.proxyFactory">
1711
1753
  <summary>
1712
- Map of subsystems registered.
1754
+ Holds the implementation of <see cref="T:Castle.MicroKernel.IProxyFactory"/>
1713
1755
  </summary>
1714
1756
  </member>
1715
- <member name="F:Castle.MicroKernel.DefaultKernel.childKernels">
1757
+ <member name="F:Castle.MicroKernel.DefaultKernel.releaserPolicy">
1716
1758
  <summary>
1717
- List of sub containers.
1759
+ Implements a policy to control component's
1760
+ disposal that the usef forgot.
1718
1761
  </summary>
1719
1762
  </member>
1720
1763
  <member name="M:Castle.MicroKernel.DefaultKernel.#ctor">
1721
1764
  <summary>
1722
- Constructs a DefaultKernel with no component
1723
- proxy support.
1765
+ Constructs a DefaultKernel with no component
1766
+ proxy support.
1724
1767
  </summary>
1725
1768
  </member>
1726
1769
  <member name="M:Castle.MicroKernel.DefaultKernel.#ctor(Castle.MicroKernel.IDependencyResolver,Castle.MicroKernel.IProxyFactory)">
1727
1770
  <summary>
1728
- Constructs a DefaultKernel with the specified
1729
- implementation of <see cref="T:Castle.MicroKernel.IProxyFactory"/> and <see cref="T:Castle.MicroKernel.IDependencyResolver"/>
1771
+ Constructs a DefaultKernel with the specified
1772
+ implementation of <see cref="T:Castle.MicroKernel.IProxyFactory"/> and <see cref="T:Castle.MicroKernel.IDependencyResolver"/>
1730
1773
  </summary>
1731
1774
  <param name="resolver"></param>
1732
1775
  <param name="proxyFactory"></param>
1733
1776
  </member>
1734
1777
  <member name="M:Castle.MicroKernel.DefaultKernel.#ctor(Castle.MicroKernel.IProxyFactory)">
1735
1778
  <summary>
1736
- Constructs a DefaultKernel with the specified
1737
- implementation of <see cref="T:Castle.MicroKernel.IProxyFactory"/>
1779
+ Constructs a DefaultKernel with the specified
1780
+ implementation of <see cref="T:Castle.MicroKernel.IProxyFactory"/>
1738
1781
  </summary>
1739
1782
  </member>
1740
- <member name="M:Castle.MicroKernel.DefaultKernel.Register(Castle.MicroKernel.Registration.IRegistration[])">
1783
+ <member name="M:Castle.MicroKernel.DefaultKernel.Dispose">
1741
1784
  <summary>
1742
- Registers the components described by the <see cref="T:Castle.MicroKernel.Registration.ComponentRegistration`1"/>s
1743
- with the <see cref="T:Castle.MicroKernel.IKernel"/>.
1744
- <param name="registrations">The component registrations.</param>
1745
- <returns>The kernel.</returns>
1785
+ Starts the process of component disposal.
1746
1786
  </summary>
1747
1787
  </member>
1748
- <member name="M:Castle.MicroKernel.DefaultKernel.RemoveComponent(System.String)">
1788
+ <member name="M:Castle.MicroKernel.DefaultKernel.GetAssignableHandlers(System.Type)">
1749
1789
  <summary>
1750
- Returns true if the specified component was
1751
- found and could be removed (i.e. no other component depends on it)
1790
+ Return handlers for components that
1791
+ implements the specified service.
1792
+ The check is made using IsAssignableFrom
1752
1793
  </summary>
1753
- <param name="key">The component's key</param>
1794
+ <param name = "service"></param>
1754
1795
  <returns></returns>
1755
1796
  </member>
1756
- <member name="M:Castle.MicroKernel.DefaultKernel.RegisterCustomDependencies(System.Type,System.Collections.IDictionary)">
1797
+ <member name="M:Castle.MicroKernel.DefaultKernel.GetFacilities">
1757
1798
  <summary>
1758
- Associates objects with a component handler,
1759
- allowing it to use the specified dictionary
1760
- when resolving dependencies
1799
+ Returns the facilities registered on the kernel.
1761
1800
  </summary>
1762
- <param name="service"></param>
1763
- <param name="dependencies"></param>
1801
+ <returns></returns>
1764
1802
  </member>
1765
- <member name="M:Castle.MicroKernel.DefaultKernel.RegisterCustomDependencies(System.String,System.Collections.IDictionary)">
1803
+ <member name="M:Castle.MicroKernel.DefaultKernel.GetHandlers(System.Type)">
1766
1804
  <summary>
1767
- Associates objects with a component handler,
1768
- allowing it to use the specified dictionary
1769
- when resolving dependencies
1805
+ Return handlers for components that
1806
+ implements the specified service.
1770
1807
  </summary>
1771
- <param name="key"></param>
1772
- <param name="dependencies"></param>
1808
+ <param name = "service"></param>
1809
+ <returns></returns>
1773
1810
  </member>
1774
- <member name="M:Castle.MicroKernel.DefaultKernel.ReleaseComponent(System.Object)">
1811
+ <member name="M:Castle.MicroKernel.DefaultKernel.Register(Castle.MicroKernel.Registration.IRegistration[])">
1775
1812
  <summary>
1776
- Releases a component instance. This allows
1777
- the kernel to execute the proper decomission
1778
- lifecycles on the component instance.
1813
+ Registers the components described by the <see cref="T:Castle.MicroKernel.Registration.ComponentRegistration`1"/>s
1814
+ with the <see cref="T:Castle.MicroKernel.IKernel"/>.
1815
+ <param name="registrations">The component registrations.</param>
1816
+ <returns>The kernel.</returns>
1779
1817
  </summary>
1780
- <param name="instance"></param>
1781
1818
  </member>
1782
- <member name="M:Castle.MicroKernel.DefaultKernel.GetHandlers(System.Type)">
1819
+ <member name="M:Castle.MicroKernel.DefaultKernel.RegisterCustomDependencies(System.Type,System.Collections.IDictionary)">
1783
1820
  <summary>
1784
- Return handlers for components that
1785
- implements the specified service.
1821
+ Associates objects with a component handler,
1822
+ allowing it to use the specified dictionary
1823
+ when resolving dependencies
1786
1824
  </summary>
1787
- <param name="service"></param>
1788
- <returns></returns>
1825
+ <param name = "service"></param>
1826
+ <param name = "dependencies"></param>
1789
1827
  </member>
1790
- <member name="M:Castle.MicroKernel.DefaultKernel.GetAssignableHandlers(System.Type)">
1828
+ <member name="M:Castle.MicroKernel.DefaultKernel.RegisterCustomDependencies(System.Type,System.Object)">
1791
1829
  <summary>
1792
- Return handlers for components that
1793
- implements the specified service.
1794
- The check is made using IsAssignableFrom
1830
+ Associates objects with a component handler,
1831
+ allowing it to use the specified dictionary
1832
+ when resolving dependencies
1795
1833
  </summary>
1796
- <param name="service"></param>
1797
- <returns></returns>
1834
+ <param name = "service"></param>
1835
+ <param name = "dependenciesAsAnonymousType"></param>
1798
1836
  </member>
1799
- <member name="M:Castle.MicroKernel.DefaultKernel.GetFacilities">
1837
+ <member name="M:Castle.MicroKernel.DefaultKernel.RegisterCustomDependencies(System.String,System.Collections.IDictionary)">
1800
1838
  <summary>
1801
- Returns the facilities registered on the kernel.
1839
+ Associates objects with a component handler,
1840
+ allowing it to use the specified dictionary
1841
+ when resolving dependencies
1802
1842
  </summary>
1803
- <returns></returns>
1843
+ <param name = "key"></param>
1844
+ <param name = "dependencies"></param>
1804
1845
  </member>
1805
- <member name="M:Castle.MicroKernel.DefaultKernel.GetService(System.Type)">
1806
- <summary>
1807
- Gets the service object of the specified type.
1808
- </summary>
1809
-
1810
- <returns>
1811
- A service object of type serviceType.
1812
- </returns>
1813
-
1814
- <param name="serviceType">An object that specifies the type of service object to get. </param>
1846
+ <member name="M:Castle.MicroKernel.DefaultKernel.RegisterCustomDependencies(System.String,System.Object)">
1847
+ <summary>
1848
+ Associates objects with a component handler,
1849
+ allowing it to use the specified dictionary
1850
+ when resolving dependencies
1851
+ </summary>
1852
+ <param name = "key"></param>
1853
+ <param name = "dependenciesAsAnonymousType"></param>
1815
1854
  </member>
1816
- <member name="M:Castle.MicroKernel.DefaultKernel.GetService``1">
1817
- <summary>
1818
- Gets the service object of the specified type.
1819
- </summary>
1820
-
1821
- <returns>
1822
- A service object of type serviceType.
1823
- </returns>
1855
+ <member name="M:Castle.MicroKernel.DefaultKernel.ReleaseComponent(System.Object)">
1856
+ <summary>
1857
+ Releases a component instance. This allows
1858
+ the kernel to execute the proper decomission
1859
+ lifecycles on the component instance.
1860
+ </summary>
1861
+ <param name = "instance"></param>
1824
1862
  </member>
1825
- <member name="M:Castle.MicroKernel.DefaultKernel.Dispose">
1863
+ <member name="M:Castle.MicroKernel.DefaultKernel.RemoveComponent(System.String)">
1864
+ <summary>
1865
+ Returns true if the specified component was
1866
+ found and could be removed (i.e. no other component depends on it)
1867
+ </summary>
1868
+ <param name = "key">The component's key</param>
1869
+ <returns></returns>
1870
+ </member>
1871
+ <member name="M:Castle.MicroKernel.DefaultKernel.GetService(System.Type)">
1872
+ <summary>
1873
+ Gets the service object of the specified type.
1874
+ </summary>
1875
+ <returns>
1876
+ A service object of type serviceType.
1877
+ </returns>
1878
+ <param name = "serviceType">An object that specifies the type of service object to get. </param>
1879
+ </member>
1880
+ <member name="M:Castle.MicroKernel.DefaultKernel.GetService``1">
1826
1881
  <summary>
1827
- Starts the process of component disposal.
1882
+ Gets the service object of the specified type.
1828
1883
  </summary>
1884
+ <returns>
1885
+ A service object of type serviceType.
1886
+ </returns>
1829
1887
  </member>
1830
1888
  <member name="M:Castle.MicroKernel.DefaultKernel.AddComponent(System.String,System.Type,Castle.Core.LifestyleType)">
1831
1889
  <summary>
@@ -2086,6 +2144,14 @@
2086
2144
  <param name="arguments"></param>
2087
2145
  <returns></returns>
2088
2146
  </member>
2147
+ <member name="M:Castle.MicroKernel.DefaultKernel.Resolve``1(System.Object)">
2148
+ <summary>
2149
+ Returns the component instance by the service type
2150
+ using dynamic arguments
2151
+ </summary>
2152
+ <param name="argumentsAsAnonymousType"></param>
2153
+ <returns></returns>
2154
+ </member>
2089
2155
  <member name="M:Castle.MicroKernel.DefaultKernel.Resolve``1">
2090
2156
  <summary>
2091
2157
  Returns the component instance by the component key
@@ -2127,6 +2193,15 @@
2127
2193
  <param name="arguments"></param>
2128
2194
  <returns></returns>
2129
2195
  </member>
2196
+ <member name="M:Castle.MicroKernel.DefaultKernel.Resolve(System.Type,System.Object)">
2197
+ <summary>
2198
+ Returns the component instance by the service type
2199
+ using dynamic arguments
2200
+ </summary>
2201
+ <param name="service"></param>
2202
+ <param name="argumentsAsAnonymousType"></param>
2203
+ <returns></returns>
2204
+ </member>
2130
2205
  <member name="M:Castle.MicroKernel.DefaultKernel.Resolve(System.String,System.Collections.IDictionary)">
2131
2206
  <summary>
2132
2207
  Returns the component instance by the component key
@@ -2136,6 +2211,15 @@
2136
2211
  <param name="arguments"></param>
2137
2212
  <returns></returns>
2138
2213
  </member>
2214
+ <member name="M:Castle.MicroKernel.DefaultKernel.Resolve(System.String,System.Object)">
2215
+ <summary>
2216
+ Returns the component instance by the component key
2217
+ using dynamic arguments
2218
+ </summary>
2219
+ <param name="key"></param>
2220
+ <param name="argumentsAsAnonymousType"></param>
2221
+ <returns></returns>
2222
+ </member>
2139
2223
  <member name="M:Castle.MicroKernel.DefaultKernel.ResolveAll(System.Type)">
2140
2224
  <summary>
2141
2225
  Returns all the valid component instances by
@@ -2153,6 +2237,24 @@
2153
2237
  Arguments to resolve the services
2154
2238
  </param>
2155
2239
  </member>
2240
+ <member name="M:Castle.MicroKernel.DefaultKernel.ResolveAll(System.Type,System.Object)">
2241
+ <summary>
2242
+ Returns all the valid component instances by
2243
+ the service type
2244
+ </summary>
2245
+ <param name="service">The service type</param>
2246
+ <param name="argumentsAsAnonymousType">
2247
+ Arguments to resolve the services
2248
+ </param>
2249
+ </member>
2250
+ <member name="M:Castle.MicroKernel.DefaultKernel.ResolveAll``1(System.Object)">
2251
+ <summary>
2252
+ Returns component instances that implement TService
2253
+ </summary>
2254
+ <typeparam name="TService"></typeparam>
2255
+ <param name="argumentsAsAnonymousType"></param>
2256
+ <returns></returns>
2257
+ </member>
2156
2258
  <member name="M:Castle.MicroKernel.DefaultKernel.ResolveAll``1(System.Collections.IDictionary)">
2157
2259
  <summary>
2158
2260
  Returns component instances that implement TService
@@ -2168,9 +2270,20 @@
2168
2270
  <typeparam name="TService"></typeparam>
2169
2271
  <returns></returns>
2170
2272
  </member>
2273
+ <member name="M:Castle.MicroKernel.DefaultKernel.Resolve(System.String,System.Type,System.Object)">
2274
+ <summary>
2275
+ Resolves the specified key.
2276
+ </summary>
2277
+ <param name="key">The key.</param>
2278
+ <param name="service">The service.</param>
2279
+ <param name="argumentsAsAnonymousType">
2280
+ Type of the arguments as anonymous.
2281
+ </param>
2282
+ <returns></returns>
2283
+ </member>
2171
2284
  <member name="P:Castle.MicroKernel.DefaultKernel.GraphNodes">
2172
2285
  <summary>
2173
- Graph of components and iteractions.
2286
+ Graph of components and iteractions.
2174
2287
  </summary>
2175
2288
  </member>
2176
2289
  <member name="E:Castle.MicroKernel.DefaultKernel.HandlerRegistered">
@@ -2520,43 +2633,43 @@
2520
2633
  </member>
2521
2634
  <member name="M:Castle.Facilities.Startable.StartableFacility.DeferredStart">
2522
2635
  <summary>
2523
- This method changes behavior of the facility. Deferred mode should be used when you
2524
- have single call to <see cref="M:Castle.Windsor.IWindsorContainer.Install(Castle.MicroKernel.Registration.IWindsorInstaller[])"/> and register all your components there.
2525
- Enabling this mode will optimize the behavior of the facility so that it will wait 'till the end of
2526
- intallation and only after all <see cref="T:Castle.MicroKernel.Registration.IWindsorInstaller"/>s were ran it will instantiate and
2527
- start all the startable components. An exception will be thrown if a startable component can't be
2528
- instantiated and started. This will help you fail fast and diagnose issues quickly. If you don't want
2529
- the exception to be thrown and you prefer the component to fail silently, use <see cref="M:Castle.Facilities.Startable.StartableFacility.DeferredTryStart"/> method instead.
2636
+ This method changes behavior of the facility. Deferred mode should be used when you
2637
+ have single call to <see cref="M:Castle.Windsor.IWindsorContainer.Install(Castle.MicroKernel.Registration.IWindsorInstaller[])"/> and register all your components there.
2638
+ Enabling this mode will optimize the behavior of the facility so that it will wait 'till the end of
2639
+ intallation and only after all <see cref="T:Castle.MicroKernel.Registration.IWindsorInstaller"/>s were ran it will instantiate and
2640
+ start all the startable components. An exception will be thrown if a startable component can't be
2641
+ instantiated and started. This will help you fail fast and diagnose issues quickly. If you don't want
2642
+ the exception to be thrown and you prefer the component to fail silently, use <see cref="M:Castle.Facilities.Startable.StartableFacility.DeferredTryStart"/> method instead.
2530
2643
  </summary>
2531
2644
  <remarks>
2532
- It is recommended to use this method over <see cref="M:Castle.Facilities.Startable.StartableFacility.DeferredTryStart"/> method.
2645
+ It is recommended to use this method over <see cref="M:Castle.Facilities.Startable.StartableFacility.DeferredTryStart"/> method.
2533
2646
  </remarks>
2534
2647
  </member>
2535
2648
  <member name="M:Castle.Facilities.Startable.StartableFacility.DeferredTryStart">
2536
2649
  <summary>
2537
- This method changes behavior of the facility. Deferred mode should be used when you
2538
- have single call to <see cref="M:Castle.Windsor.IWindsorContainer.Install(Castle.MicroKernel.Registration.IWindsorInstaller[])"/> and register all your components there.
2539
- Enabling this mode will optimize the behavior of the facility so that it will wait 'till the end of
2540
- intallation and only after all <see cref="T:Castle.MicroKernel.Registration.IWindsorInstaller"/>s were ran it will instantiate and
2541
- start all the startable components. No exception will be thrown if a startable component can't be
2542
- instantiated and started. If you'd rather fail fast and diagnose issues quickly, use <see cref="M:Castle.Facilities.Startable.StartableFacility.DeferredStart"/> method instead.
2650
+ This method changes behavior of the facility. Deferred mode should be used when you
2651
+ have single call to <see cref="M:Castle.Windsor.IWindsorContainer.Install(Castle.MicroKernel.Registration.IWindsorInstaller[])"/> and register all your components there.
2652
+ Enabling this mode will optimize the behavior of the facility so that it will wait 'till the end of
2653
+ intallation and only after all <see cref="T:Castle.MicroKernel.Registration.IWindsorInstaller"/>s were ran it will instantiate and
2654
+ start all the startable components. No exception will be thrown if a startable component can't be
2655
+ instantiated and started. If you'd rather fail fast and diagnose issues quickly, use <see cref="M:Castle.Facilities.Startable.StartableFacility.DeferredStart"/> method instead.
2543
2656
  </summary>
2544
2657
  <remarks>
2545
- It is recommended to use <see cref="M:Castle.Facilities.Startable.StartableFacility.DeferredStart"/> method over this method.
2658
+ It is recommended to use <see cref="M:Castle.Facilities.Startable.StartableFacility.DeferredStart"/> method over this method.
2546
2659
  </remarks>
2547
2660
  </member>
2548
2661
  <member name="M:Castle.Facilities.Startable.StartableFacility.CheckWaitingList">
2549
2662
  <summary>
2550
- For each new component registered,
2551
- some components in the WaitingDependency
2552
- state may have became valid, so we check them
2663
+ For each new component registered,
2664
+ some components in the WaitingDependency
2665
+ state may have became valid, so we check them
2553
2666
  </summary>
2554
2667
  </member>
2555
2668
  <member name="M:Castle.Facilities.Startable.StartableFacility.TryStart(Castle.MicroKernel.IHandler)">
2556
2669
  <summary>
2557
- Request the component instance
2670
+ Request the component instance
2558
2671
  </summary>
2559
- <param name="handler"></param>
2672
+ <param name = "handler"></param>
2560
2673
  </member>
2561
2674
  <member name="M:Castle.Facilities.Startable.StartableFacilityRegistrationExtensions.StartUsingMethod``1(Castle.MicroKernel.Registration.ComponentRegistration{``0},System.String)">
2562
2675
  <summary>
@@ -2686,13 +2799,13 @@
2686
2799
  </member>
2687
2800
  <member name="T:Castle.MicroKernel.Handlers.ParentHandlerWithChildResolver">
2688
2801
  <summary>
2689
- Redirects resolution to the main resolver, and if not found uses
2690
- the parent handler.
2802
+ Redirects resolution to the main resolver, and if not found uses
2803
+ the parent handler.
2691
2804
  </summary>
2692
2805
  </member>
2693
2806
  <member name="M:Castle.MicroKernel.Handlers.ParentHandlerWithChildResolver.#ctor(Castle.MicroKernel.IHandler,Castle.MicroKernel.ISubDependencyResolver)">
2694
2807
  <summary>
2695
- Initializes a new instance of the <see cref="T:Castle.MicroKernel.Handlers.ParentHandlerWithChildResolver"/> class.
2808
+ Initializes a new instance of the <see cref="T:Castle.MicroKernel.Handlers.ParentHandlerWithChildResolver"/> class.
2696
2809
  </summary>
2697
2810
  <param name="parentHandler">The parent handler.</param>
2698
2811
  <param name="childResolver">The child resolver.</param>
@@ -4270,6 +4383,11 @@
4270
4383
  Inserts a new typed argument with given type. If an argument for this type already exists, it will be overwritten.
4271
4384
  </summary>
4272
4385
  </member>
4386
+ <member name="M:Castle.MicroKernel.Registration.ComponentDependencyRegistrationExtensions.Insert(System.Collections.IDictionary,System.Object)">
4387
+ <summary>
4388
+ Inserts a set of typed arguments. Property names of the anonymous type will be used as key.
4389
+ </summary>
4390
+ </member>
4273
4391
  <member name="M:Castle.MicroKernel.Registration.ComponentDependencyRegistrationExtensions.Insert(System.Collections.IDictionary,System.Object[])">
4274
4392
  <summary>
4275
4393
  Inserts a set of typed arguments. Actual type of the arguments will be used as key.
@@ -4366,7 +4484,7 @@
4366
4484
  <summary>
4367
4485
  Specify custom dependencies using <see cref="M:Castle.MicroKernel.Registration.Property.ForKey(System.String)"/> or <see cref="M:Castle.MicroKernel.Registration.Property.ForKey(System.Type)"/>.
4368
4486
  <para/>
4369
- Use <see cref="M:Castle.MicroKernel.Registration.ComponentRegistration`1.ServiceOverrides(Castle.MicroKernel.Registration.ServiceOverride[])"/> to specify the components
4487
+ You can pass <see cref="T:Castle.MicroKernel.Registration.ServiceOverride"/>s to specify the components
4370
4488
  this component should be resolved with.
4371
4489
  </summary>
4372
4490
  <param name="dependencies">The dependencies.</param>
@@ -4382,6 +4500,16 @@
4382
4500
  <param name="dependencies">The dependencies.</param>
4383
4501
  <returns></returns>
4384
4502
  </member>
4503
+ <member name="M:Castle.MicroKernel.Registration.ComponentRegistration`1.DependsOn(System.Object)">
4504
+ <summary>
4505
+ Uses an (anonymous) object as a dictionary, to specify custom dependencies.
4506
+ <para/>
4507
+ Use <see cref="M:Castle.MicroKernel.Registration.ComponentRegistration`1.ServiceOverrides(System.Object)"/> to specify the components
4508
+ this component should be resolved with.
4509
+ </summary>
4510
+ <param name="anonymous">The dependencies.</param>
4511
+ <returns></returns>
4512
+ </member>
4385
4513
  <member name="M:Castle.MicroKernel.Registration.ComponentRegistration`1.DynamicParameters(Castle.MicroKernel.Registration.DynamicParametersDelegate)">
4386
4514
  <summary>
4387
4515
  Allows custom dependencies to by defined dyncamically.
@@ -4413,6 +4541,13 @@
4413
4541
  <param name="properties">The extended properties.</param>
4414
4542
  <returns></returns>
4415
4543
  </member>
4544
+ <member name="M:Castle.MicroKernel.Registration.ComponentRegistration`1.ExtendedProperties(System.Object)">
4545
+ <summary>
4546
+ Sets <see cref="P:Castle.Core.ComponentModel.ExtendedProperties"/> for this component.
4547
+ </summary>
4548
+ <param name="anonymous">The extendend properties as key/value pairs.</param>
4549
+ <returns></returns>
4550
+ </member>
4416
4551
  <member name="M:Castle.MicroKernel.Registration.ComponentRegistration`1.Forward(System.Type[])">
4417
4552
  <summary>
4418
4553
  Registers the service types on behalf of this component.
@@ -4598,6 +4733,18 @@
4598
4733
  <param name="overrides">The service overrides.</param>
4599
4734
  <returns></returns>
4600
4735
  </member>
4736
+ <member name="M:Castle.MicroKernel.Registration.ComponentRegistration`1.ServiceOverrides(System.Object)">
4737
+ <summary>
4738
+ Override (some of) the services that this component needs, using an (anonymous) object as a dictionary.
4739
+ <para/>
4740
+ Each key represents the service dependency of this component, for example the name of a constructor argument or a property.
4741
+ The corresponding value is the key of an other component registered to the kernel, and is used to resolve the dependency.
4742
+ <para/>
4743
+ To specify dependencies which are not services, use <see cref="M:Castle.MicroKernel.Registration.ComponentRegistration`1.DependsOn(System.Object)"/>
4744
+ </summary>
4745
+ <param name="anonymous">The service overrides.</param>
4746
+ <returns></returns>
4747
+ </member>
4601
4748
  <member name="M:Castle.MicroKernel.Registration.ComponentRegistration`1.Unless(Castle.MicroKernel.Registration.ComponentFilter)">
4602
4749
  <summary>
4603
4750
  Assigns a conditional predication which must not be satisfied.
@@ -4980,6 +5127,25 @@
4980
5127
  <param key="value">The property value.</param>
4981
5128
  <returns>The new <see cref="T:Castle.MicroKernel.Registration.Property"/></returns>
4982
5129
  </member>
5130
+ <member name="M:Castle.MicroKernel.Registration.PropertyKey.Is(System.String)">
5131
+ <summary>
5132
+ Builds a service override using other component registered with given <paramref name="componentName"/> as value for dependency with given <see cref="P:Castle.MicroKernel.Registration.PropertyKey.Key"/>.
5133
+ </summary>
5134
+ <param name="componentName"></param>
5135
+ <returns></returns>
5136
+ </member>
5137
+ <member name="M:Castle.MicroKernel.Registration.PropertyKey.Is(System.Type)">
5138
+ <summary>
5139
+ Builds a service override using other component registered with given <paramref name="componentImplementation"/> and no explicit name, as value for dependency with given <see cref="P:Castle.MicroKernel.Registration.PropertyKey.Key"/>.
5140
+ </summary>
5141
+ <returns></returns>
5142
+ </member>
5143
+ <member name="M:Castle.MicroKernel.Registration.PropertyKey.Is``1">
5144
+ <summary>
5145
+ Builds a service override using other component registered with given <typeparam name="TComponentImplementation"/> and no explicit name, as value for dependency with given <see cref="P:Castle.MicroKernel.Registration.PropertyKey.Key"/>.
5146
+ </summary>
5147
+ <returns></returns>
5148
+ </member>
4983
5149
  <member name="P:Castle.MicroKernel.Registration.PropertyKey.Key">
4984
5150
  <summary>
4985
5151
  The property key key.
@@ -5486,11 +5652,6 @@
5486
5652
  No tracking of component instances are made.
5487
5653
  </summary>
5488
5654
  </member>
5489
- <member name="M:Castle.MicroKernel.Releasers.NoTrackingReleasePolicy.#ctor">
5490
- <summary>
5491
- Initializes a new instance of the <see cref="T:Castle.MicroKernel.Releasers.NoTrackingReleasePolicy"/> class.
5492
- </summary>
5493
- </member>
5494
5655
  <member name="T:Castle.MicroKernel.Resolvers.DefaultDependencyResolver">
5495
5656
  <summary>
5496
5657
  Default implementation for <see cref="T:Castle.MicroKernel.IDependencyResolver"/>.
@@ -6094,11 +6255,6 @@
6094
6255
  and still call from non generic types outside.
6095
6256
  </summary>
6096
6257
  </member>
6097
- <member name="M:Castle.MicroKernel.SubSystems.Conversion.GenericListConverter.#ctor">
6098
- <summary>
6099
- Initializes a new instance of the <see cref="T:Castle.MicroKernel.SubSystems.Conversion.GenericListConverter"/> class.
6100
- </summary>
6101
- </member>
6102
6258
  <member name="T:Castle.MicroKernel.SubSystems.Conversion.PrimitiveConverter">
6103
6259
  <summary>
6104
6260
  Implements all standard conversions.
@@ -6734,84 +6890,65 @@
6734
6890
  </member>
6735
6891
  <member name="T:Castle.Windsor.IWindsorContainer">
6736
6892
  <summary>
6737
- The <c>IWindsorContainer</c> interface exposes all the
6738
- functionality the Windsor implements.
6739
- </summary>
6740
- </member>
6741
- <member name="M:Castle.Windsor.IWindsorContainer.AddFacility(System.String,Castle.MicroKernel.IFacility)">
6742
- <summary>
6743
- Registers a facility within the container.
6744
- </summary>
6745
- <param name="key">The key by which the <see cref="T:Castle.MicroKernel.IFacility"/> gets indexed.</param>
6746
- <param name="facility">The <see cref="T:Castle.MicroKernel.IFacility"/> to add to the container.</param>
6747
- </member>
6748
- <member name="M:Castle.Windsor.IWindsorContainer.AddFacility``1(System.String)">
6749
- <summary>
6750
- Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
6893
+ The <c>IWindsorContainer</c> interface exposes all the
6894
+ functionality the Windsor implements.
6751
6895
  </summary>
6752
- <typeparam name="T">The facility type.</typeparam>
6753
- <param name="key"></param>
6754
- <returns></returns>
6755
6896
  </member>
6756
- <member name="M:Castle.Windsor.IWindsorContainer.AddFacility``1(System.String,System.Action{``0})">
6897
+ <member name="M:Castle.Windsor.IWindsorContainer.AddChildContainer(Castle.Windsor.IWindsorContainer)">
6757
6898
  <summary>
6758
- Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
6899
+ Registers a subcontainer. The components exposed
6900
+ by this container will be accessible from subcontainers.
6759
6901
  </summary>
6760
- <typeparam name="T">The facility type.</typeparam>
6761
- <param name="key"></param>
6762
- <param name="onCreate">The callback for creation.</param>
6763
- <returns></returns>
6902
+ <param name = "childContainer"></param>
6764
6903
  </member>
6765
- <member name="M:Castle.Windsor.IWindsorContainer.AddFacility``1(System.String,System.Func{``0,System.Object})">
6904
+ <member name="M:Castle.Windsor.IWindsorContainer.AddComponent(System.String,System.Type)">
6766
6905
  <summary>
6767
- Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
6906
+ Adds a component to be managed by the container
6768
6907
  </summary>
6769
- <typeparam name="T">The facility type.</typeparam>
6770
- <param name="key"></param>
6771
- <param name="onCreate">The callback for creation.</param>
6772
- <returns></returns>
6908
+ <param name="key">The key by which the component gets indexed.</param>
6909
+ <param name="classType">The <see cref="T:System.Type"/> to manage.</param>
6773
6910
  </member>
6774
- <member name="M:Castle.Windsor.IWindsorContainer.AddFacility``1">
6911
+ <member name="M:Castle.Windsor.IWindsorContainer.AddComponent(System.String,System.Type,System.Type)">
6775
6912
  <summary>
6776
- Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
6913
+ Adds a component to be managed by the container
6777
6914
  </summary>
6778
- <typeparam name="T">The facility type.</typeparam>
6779
- <returns></returns>
6915
+ <param name="key">The key by which the component gets indexed.</param>
6916
+ <param name="serviceType">The service <see cref="T:System.Type"/> that the component implements.</param>
6917
+ <param name="classType">The <see cref="T:System.Type"/> to manage.</param>
6780
6918
  </member>
6781
- <member name="M:Castle.Windsor.IWindsorContainer.AddFacility``1(System.Action{``0})">
6919
+ <member name="M:Castle.Windsor.IWindsorContainer.AddComponent``1">
6782
6920
  <summary>
6783
- Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
6921
+ Adds a component to be managed by the container.
6922
+ The key to obtain the component will be the FullName of the type.
6784
6923
  </summary>
6785
- <typeparam name="T">The facility type.</typeparam>
6786
- <param name="onCreate">The callback for creation.</param>
6787
- <returns></returns>
6924
+ <typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
6788
6925
  </member>
6789
- <member name="M:Castle.Windsor.IWindsorContainer.AddFacility``1(System.Func{``0,System.Object})">
6926
+ <member name="M:Castle.Windsor.IWindsorContainer.AddComponent``1(System.String)">
6790
6927
  <summary>
6791
- Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
6928
+ Adds a component to be managed by the container
6792
6929
  </summary>
6793
- <typeparam name="T">The facility type.</typeparam>
6794
- <param name="onCreate">The callback for creation.</param>
6795
- <returns></returns>
6930
+ <typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
6931
+ <param name="key">The key by which the component gets indexed.</param>
6796
6932
  </member>
6797
- <member name="M:Castle.Windsor.IWindsorContainer.AddComponent(System.String,System.Type)">
6933
+ <member name="M:Castle.Windsor.IWindsorContainer.AddComponent``2">
6798
6934
  <summary>
6799
- Adds a component to be managed by the container
6935
+ Adds a component to be managed by the container
6936
+ The key to obtain the component will be the FullName of the type.
6800
6937
  </summary>
6801
- <param name="key">The key by which the component gets indexed.</param>
6802
- <param name="classType">The <see cref="T:System.Type"/> to manage.</param>
6938
+ <typeparam name="I">The service <see cref="T:System.Type"/> that the component implements.</typeparam>
6939
+ <typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
6803
6940
  </member>
6804
- <member name="M:Castle.Windsor.IWindsorContainer.AddComponent(System.String,System.Type,System.Type)">
6941
+ <member name="M:Castle.Windsor.IWindsorContainer.AddComponent``2(System.String)">
6805
6942
  <summary>
6806
- Adds a component to be managed by the container
6943
+ Adds a component to be managed by the container
6807
6944
  </summary>
6945
+ <typeparam name="I">The service <see cref="T:System.Type"/> that the component implements.</typeparam>
6946
+ <typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
6808
6947
  <param name="key">The key by which the component gets indexed.</param>
6809
- <param name="serviceType">The service <see cref="T:System.Type"/> that the component implements.</param>
6810
- <param name="classType">The <see cref="T:System.Type"/> to manage.</param>
6811
6948
  </member>
6812
6949
  <member name="M:Castle.Windsor.IWindsorContainer.AddComponentLifeStyle(System.String,System.Type,Castle.Core.LifestyleType)">
6813
6950
  <summary>
6814
- Adds a component to be managed by the container
6951
+ Adds a component to be managed by the container
6815
6952
  </summary>
6816
6953
  <param name="key">The key by which the component gets indexed.</param>
6817
6954
  <param name="classType">The <see cref="T:System.Type"/> to manage.</param>
@@ -6819,312 +6956,387 @@
6819
6956
  </member>
6820
6957
  <member name="M:Castle.Windsor.IWindsorContainer.AddComponentLifeStyle(System.String,System.Type,System.Type,Castle.Core.LifestyleType)">
6821
6958
  <summary>
6822
- Adds a component to be managed by the container
6959
+ Adds a component to be managed by the container
6823
6960
  </summary>
6824
6961
  <param name="key">The key by which the component gets indexed.</param>
6825
6962
  <param name="serviceType">The service <see cref="T:System.Type"/> that the component implements.</param>
6826
6963
  <param name="classType">The <see cref="T:System.Type"/> to manage.</param>
6827
6964
  <param name="lifestyle">The <see cref="T:Castle.Core.LifestyleType"/> with which to manage the component.</param>
6828
6965
  </member>
6829
- <member name="M:Castle.Windsor.IWindsorContainer.AddComponentWithProperties(System.String,System.Type,System.Collections.IDictionary)">
6830
- <summary>
6831
- Adds a concrete class as a component and specify the extended properties.
6832
- Used by facilities, mostly.
6833
- </summary>
6834
- <param name="key"></param>
6835
- <param name="classType"></param>
6836
- <param name="extendedProperties"></param>
6837
- </member>
6838
- <member name="M:Castle.Windsor.IWindsorContainer.AddComponentWithProperties(System.String,System.Type,System.Type,System.Collections.IDictionary)">
6839
- <summary>
6840
- Adds a concrete class and an interface
6841
- as a component and specify the extended properties.
6842
- Used by facilities, mostly.
6843
- </summary>
6844
- <param name="key"></param>
6845
- <param name="serviceType"></param>
6846
- <param name="classType"></param>
6847
- <param name="extendedProperties"></param>
6848
- </member>
6849
- <member name="M:Castle.Windsor.IWindsorContainer.AddComponent``1">
6966
+ <member name="M:Castle.Windsor.IWindsorContainer.AddComponentLifeStyle``1(Castle.Core.LifestyleType)">
6850
6967
  <summary>
6851
- Adds a component to be managed by the container.
6852
- The key to obtain the component will be the FullName of the type.
6968
+ Adds a component to be managed by the container.
6969
+ The key to obtain the component will be the FullName of the type.
6853
6970
  </summary>
6854
6971
  <typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
6972
+ <param name="lifestyle">The <see cref="T:Castle.Core.LifestyleType"/> with which to manage the component.</param>
6855
6973
  </member>
6856
- <member name="M:Castle.Windsor.IWindsorContainer.AddComponent``1(System.String)">
6974
+ <member name="M:Castle.Windsor.IWindsorContainer.AddComponentLifeStyle``1(System.String,Castle.Core.LifestyleType)">
6857
6975
  <summary>
6858
- Adds a component to be managed by the container
6976
+ Adds a component to be managed by the container
6859
6977
  </summary>
6860
6978
  <typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
6861
6979
  <param name="key">The key by which the component gets indexed.</param>
6980
+ <param name="lifestyle">The <see cref="T:Castle.Core.LifestyleType"/> with which to manage the component.</param>
6862
6981
  </member>
6863
- <member name="M:Castle.Windsor.IWindsorContainer.AddComponentLifeStyle``1(Castle.Core.LifestyleType)">
6982
+ <member name="M:Castle.Windsor.IWindsorContainer.AddComponentLifeStyle``2(Castle.Core.LifestyleType)">
6864
6983
  <summary>
6865
- Adds a component to be managed by the container.
6866
- The key to obtain the component will be the FullName of the type.
6984
+ Adds a component to be managed by the container
6985
+ The key to obtain the component will be the FullName of the type.
6867
6986
  </summary>
6987
+ <typeparam name="I">The service <see cref="T:System.Type"/> that the component implements.</typeparam>
6868
6988
  <typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
6869
6989
  <param name="lifestyle">The <see cref="T:Castle.Core.LifestyleType"/> with which to manage the component.</param>
6870
6990
  </member>
6871
- <member name="M:Castle.Windsor.IWindsorContainer.AddComponentLifeStyle``1(System.String,Castle.Core.LifestyleType)">
6991
+ <member name="M:Castle.Windsor.IWindsorContainer.AddComponentLifeStyle``2(System.String,Castle.Core.LifestyleType)">
6872
6992
  <summary>
6873
- Adds a component to be managed by the container
6993
+ Adds a component to be managed by the container
6874
6994
  </summary>
6995
+ <typeparam name="I">The service <see cref="T:System.Type"/> that the component implements.</typeparam>
6875
6996
  <typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
6876
- <param name="key">The key by which the component gets indexed.</param>
6997
+ <param name="key">The key by which the component gets indexed.</param>
6877
6998
  <param name="lifestyle">The <see cref="T:Castle.Core.LifestyleType"/> with which to manage the component.</param>
6878
6999
  </member>
6879
- <member name="M:Castle.Windsor.IWindsorContainer.AddComponent``2">
7000
+ <member name="M:Castle.Windsor.IWindsorContainer.AddComponentProperties``2(System.Collections.IDictionary)">
6880
7001
  <summary>
6881
- Adds a component to be managed by the container
6882
- The key to obtain the component will be the FullName of the type.
7002
+ Adds a concrete class and an interface
7003
+ as a component and specify the extended properties.
7004
+ Used by facilities, mostly.
7005
+ The key to obtain the component will be the FullName of the type.
6883
7006
  </summary>
6884
- <typeparam name="I">The service <see cref="T:System.Type"/> that the component implements.</typeparam>
6885
- <typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
7007
+ <typeparam name = "I"></typeparam>
7008
+ <typeparam name = "T"></typeparam>
7009
+ <param name = "extendedProperties"></param>
6886
7010
  </member>
6887
- <member name="M:Castle.Windsor.IWindsorContainer.AddComponent``2(System.String)">
7011
+ <member name="M:Castle.Windsor.IWindsorContainer.AddComponentProperties``2(System.String,System.Collections.IDictionary)">
6888
7012
  <summary>
6889
- Adds a component to be managed by the container
7013
+ Adds a concrete class and an interface
7014
+ as a component and specify the extended properties.
7015
+ Used by facilities, mostly.
6890
7016
  </summary>
6891
- <typeparam name="I">The service <see cref="T:System.Type"/> that the component implements.</typeparam>
6892
- <typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
6893
- <param name="key">The key by which the component gets indexed.</param>
7017
+ <typeparam name = "I"></typeparam>
7018
+ <typeparam name = "T"></typeparam>
7019
+ <param name = "key"></param>
7020
+ <param name = "extendedProperties"></param>
6894
7021
  </member>
6895
- <member name="M:Castle.Windsor.IWindsorContainer.AddComponentLifeStyle``2(Castle.Core.LifestyleType)">
7022
+ <member name="M:Castle.Windsor.IWindsorContainer.AddComponentWithProperties(System.String,System.Type,System.Collections.IDictionary)">
6896
7023
  <summary>
6897
- Adds a component to be managed by the container
6898
- The key to obtain the component will be the FullName of the type.
7024
+ Adds a concrete class as a component and specify the extended properties.
7025
+ Used by facilities, mostly.
6899
7026
  </summary>
6900
- <typeparam name="I">The service <see cref="T:System.Type"/> that the component implements.</typeparam>
6901
- <typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
6902
- <param name="lifestyle">The <see cref="T:Castle.Core.LifestyleType"/> with which to manage the component.</param>
7027
+ <param name = "key"></param>
7028
+ <param name = "classType"></param>
7029
+ <param name = "extendedProperties"></param>
6903
7030
  </member>
6904
- <member name="M:Castle.Windsor.IWindsorContainer.AddComponentLifeStyle``2(System.String,Castle.Core.LifestyleType)">
7031
+ <member name="M:Castle.Windsor.IWindsorContainer.AddComponentWithProperties(System.String,System.Type,System.Type,System.Collections.IDictionary)">
6905
7032
  <summary>
6906
- Adds a component to be managed by the container
7033
+ Adds a concrete class and an interface
7034
+ as a component and specify the extended properties.
7035
+ Used by facilities, mostly.
6907
7036
  </summary>
6908
- <typeparam name="I">The service <see cref="T:System.Type"/> that the component implements.</typeparam>
6909
- <typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
6910
- <param name="key">The key by which the component gets indexed.</param>
6911
- <param name="lifestyle">The <see cref="T:Castle.Core.LifestyleType"/> with which to manage the component.</param>
7037
+ <param name = "key"></param>
7038
+ <param name = "serviceType"></param>
7039
+ <param name = "classType"></param>
7040
+ <param name = "extendedProperties"></param>
6912
7041
  </member>
6913
7042
  <member name="M:Castle.Windsor.IWindsorContainer.AddComponentWithProperties``1(System.Collections.IDictionary)">
6914
7043
  <summary>
6915
- Adds a concrete class as a component and specify the extended properties.
6916
- Used by facilities, mostly.
6917
- The key to obtain the component will be the FullName of the type.
7044
+ Adds a concrete class as a component and specify the extended properties.
7045
+ Used by facilities, mostly.
7046
+ The key to obtain the component will be the FullName of the type.
6918
7047
  </summary>
6919
- <typeparam name="T"></typeparam>
6920
- <param name="extendedProperties"></param>
7048
+ <typeparam name = "T"></typeparam>
7049
+ <param name = "extendedProperties"></param>
6921
7050
  </member>
6922
7051
  <member name="M:Castle.Windsor.IWindsorContainer.AddComponentWithProperties``1(System.String,System.Collections.IDictionary)">
6923
7052
  <summary>
6924
- Adds a concrete class as a component and specify the extended properties.
6925
- Used by facilities, mostly.
7053
+ Adds a concrete class as a component and specify the extended properties.
7054
+ Used by facilities, mostly.
6926
7055
  </summary>
6927
- <typeparam name="T"></typeparam>
6928
- <param name="key"></param>
6929
- <param name="extendedProperties"></param>
7056
+ <typeparam name = "T"></typeparam>
7057
+ <param name = "key"></param>
7058
+ <param name = "extendedProperties"></param>
6930
7059
  </member>
6931
- <member name="M:Castle.Windsor.IWindsorContainer.AddComponentProperties``2(System.Collections.IDictionary)">
7060
+ <member name="M:Castle.Windsor.IWindsorContainer.AddFacility(System.String,Castle.MicroKernel.IFacility)">
6932
7061
  <summary>
6933
- Adds a concrete class and an interface
6934
- as a component and specify the extended properties.
6935
- Used by facilities, mostly.
6936
- The key to obtain the component will be the FullName of the type.
7062
+ Registers a facility within the container.
6937
7063
  </summary>
6938
- <typeparam name="I"></typeparam>
6939
- <typeparam name="T"></typeparam>
6940
- <param name="extendedProperties"></param>
7064
+ <param name="key">The key by which the <see cref="T:Castle.MicroKernel.IFacility"/> gets indexed.</param>
7065
+ <param name="facility">The <see cref="T:Castle.MicroKernel.IFacility"/> to add to the container.</param>
6941
7066
  </member>
6942
- <member name="M:Castle.Windsor.IWindsorContainer.AddComponentProperties``2(System.String,System.Collections.IDictionary)">
7067
+ <member name="M:Castle.Windsor.IWindsorContainer.AddFacility``1(System.String)">
6943
7068
  <summary>
6944
- Adds a concrete class and an interface
6945
- as a component and specify the extended properties.
6946
- Used by facilities, mostly.
7069
+ Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
6947
7070
  </summary>
6948
- <typeparam name="I"></typeparam>
6949
- <typeparam name="T"></typeparam>
7071
+ <typeparam name="T">The facility type.</typeparam>
6950
7072
  <param name="key"></param>
6951
- <param name="extendedProperties"></param>
7073
+ <returns></returns>
6952
7074
  </member>
6953
- <member name="M:Castle.Windsor.IWindsorContainer.Register(Castle.MicroKernel.Registration.IRegistration[])">
7075
+ <member name="M:Castle.Windsor.IWindsorContainer.AddFacility``1(System.String,System.Action{``0})">
6954
7076
  <summary>
6955
- Registers the components provided by the <see cref="T:Castle.MicroKernel.Registration.IRegistration"/>s
6956
- with the <see cref="T:Castle.Windsor.IWindsorContainer"/>.
6957
- <para/>
6958
- Create a new registration using <see cref="T:Castle.MicroKernel.Registration.Component"/>.For() or <see cref="T:Castle.MicroKernel.Registration.AllTypes"/>.
7077
+ Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
6959
7078
  </summary>
6960
- <example>
6961
- <code>
6962
- container.Register(Component.For&lt;IService&gt;().ImplementedBy&lt;DefaultService&gt;());
6963
- </code>
6964
- </example>
6965
- <param name="registrations">The component registrations.</param>
6966
- <returns>The container.</returns>
7079
+ <typeparam name="T">The facility type.</typeparam>
7080
+ <param name="key"></param>
7081
+ <param name="onCreate">The callback for creation.</param>
7082
+ <returns></returns>
6967
7083
  </member>
6968
- <member name="M:Castle.Windsor.IWindsorContainer.Install(Castle.MicroKernel.Registration.IWindsorInstaller[])">
7084
+ <member name="M:Castle.Windsor.IWindsorContainer.AddFacility``1(System.String,System.Func{``0,System.Object})">
6969
7085
  <summary>
6970
- Installs the components provided by the <see cref="T:Castle.MicroKernel.Registration.IWindsorInstaller"/>s
6971
- with the <see cref="T:Castle.Windsor.IWindsorContainer"/>.
6972
- <param name="installers">The component installers.</param>
6973
- <returns>The container.</returns>
7086
+ Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
6974
7087
  </summary>
7088
+ <typeparam name="T">The facility type.</typeparam>
7089
+ <param name="key"></param>
7090
+ <param name="onCreate">The callback for creation.</param>
7091
+ <returns></returns>
6975
7092
  </member>
6976
- <member name="M:Castle.Windsor.IWindsorContainer.Resolve(System.String,System.Collections.IDictionary)">
7093
+ <member name="M:Castle.Windsor.IWindsorContainer.AddFacility``1">
6977
7094
  <summary>
6978
- Returns a component instance by the key
7095
+ Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
6979
7096
  </summary>
6980
- <param name="key"></param>
6981
- <param name="arguments"></param>
7097
+ <typeparam name="T">The facility type.</typeparam>
6982
7098
  <returns></returns>
6983
7099
  </member>
6984
- <member name="M:Castle.Windsor.IWindsorContainer.Resolve(System.String,System.Type)">
7100
+ <member name="M:Castle.Windsor.IWindsorContainer.AddFacility``1(System.Action{``0})">
6985
7101
  <summary>
6986
- Returns a component instance by the key
7102
+ Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
6987
7103
  </summary>
6988
- <param name="key"></param>
6989
- <param name="service"></param>
7104
+ <typeparam name="T">The facility type.</typeparam>
7105
+ <param name="onCreate">The callback for creation.</param>
6990
7106
  <returns></returns>
6991
7107
  </member>
6992
- <member name="M:Castle.Windsor.IWindsorContainer.Resolve(System.Type)">
7108
+ <member name="M:Castle.Windsor.IWindsorContainer.AddFacility``1(System.Func{``0,System.Object})">
6993
7109
  <summary>
6994
- Returns a component instance by the service
7110
+ Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
6995
7111
  </summary>
6996
- <param name="service"></param>
7112
+ <typeparam name="T">The facility type.</typeparam>
7113
+ <param name="onCreate">The callback for creation.</param>
6997
7114
  <returns></returns>
6998
7115
  </member>
6999
- <member name="M:Castle.Windsor.IWindsorContainer.Resolve(System.Type,System.Collections.IDictionary)">
7116
+ <member name="M:Castle.Windsor.IWindsorContainer.GetChildContainer(System.String)">
7000
7117
  <summary>
7001
- Returns a component instance by the service
7118
+ Gets a child container instance by name.
7002
7119
  </summary>
7003
- <param name="service"></param>
7004
- <param name="arguments"></param>
7005
- <returns></returns>
7120
+ <param name = "name">The container's name.</param>
7121
+ <returns>The child container instance or null</returns>
7006
7122
  </member>
7007
- <member name="M:Castle.Windsor.IWindsorContainer.Release(System.Object)">
7123
+ <member name="M:Castle.Windsor.IWindsorContainer.Install(Castle.MicroKernel.Registration.IWindsorInstaller[])">
7008
7124
  <summary>
7009
- Releases a component instance
7125
+ Installs the components provided by the <see cref="T:Castle.MicroKernel.Registration.IWindsorInstaller"/>s
7126
+ with the <see cref="T:Castle.Windsor.IWindsorContainer"/>.
7127
+ <param name="installers">The component installers.</param>
7128
+ <returns>The container.</returns>
7010
7129
  </summary>
7011
- <param name="instance"></param>
7012
7130
  </member>
7013
- <member name="M:Castle.Windsor.IWindsorContainer.AddChildContainer(Castle.Windsor.IWindsorContainer)">
7131
+ <member name="M:Castle.Windsor.IWindsorContainer.Register(Castle.MicroKernel.Registration.IRegistration[])">
7014
7132
  <summary>
7015
- Registers a subcontainer. The components exposed
7016
- by this container will be accessible from subcontainers.
7133
+ Registers the components provided by the <see cref="T:Castle.MicroKernel.Registration.IRegistration"/>s
7134
+ with the <see cref="T:Castle.Windsor.IWindsorContainer"/>.
7135
+ <para/>
7136
+ Create a new registration using <see cref="T:Castle.MicroKernel.Registration.Component"/>.For() or <see cref="T:Castle.MicroKernel.Registration.AllTypes"/>.
7017
7137
  </summary>
7018
- <param name="childContainer"></param>
7138
+ <example>
7139
+ <code>
7140
+ container.Register(Component.For&lt;IService&gt;().ImplementedBy&lt;DefaultService&gt;());
7141
+ </code>
7142
+ </example>
7143
+ <param name="registrations">The component registrations.</param>
7144
+ <returns>The container.</returns>
7145
+ </member>
7146
+ <member name="M:Castle.Windsor.IWindsorContainer.Release(System.Object)">
7147
+ <summary>
7148
+ Releases a component instance
7149
+ </summary>
7150
+ <param name = "instance"></param>
7019
7151
  </member>
7020
7152
  <member name="M:Castle.Windsor.IWindsorContainer.RemoveChildContainer(Castle.Windsor.IWindsorContainer)">
7021
7153
  <summary>
7022
- Remove a child container
7154
+ Remove a child container
7023
7155
  </summary>
7024
- <param name="childContainer"></param>
7156
+ <param name = "childContainer"></param>
7025
7157
  </member>
7026
- <member name="M:Castle.Windsor.IWindsorContainer.GetChildContainer(System.String)">
7158
+ <member name="M:Castle.Windsor.IWindsorContainer.Resolve(System.String,System.Collections.IDictionary)">
7027
7159
  <summary>
7028
- Gets a child container instance by name.
7160
+ Returns a component instance by the key
7029
7161
  </summary>
7030
- <param name="name">The container's name.</param>
7031
- <returns>The child container instance or null</returns>
7162
+ <param name = "key"></param>
7163
+ <param name = "arguments"></param>
7164
+ <returns></returns>
7165
+ </member>
7166
+ <member name="M:Castle.Windsor.IWindsorContainer.Resolve(System.String,System.Object)">
7167
+ <summary>
7168
+ Returns a component instance by the key
7169
+ </summary>
7170
+ <param name = "key"></param>
7171
+ <param name = "argumentsAsAnonymousType"></param>
7172
+ <returns></returns>
7173
+ </member>
7174
+ <member name="M:Castle.Windsor.IWindsorContainer.Resolve(System.String,System.Type)">
7175
+ <summary>
7176
+ Returns a component instance by the key
7177
+ </summary>
7178
+ <param name = "key"></param>
7179
+ <param name = "service"></param>
7180
+ <returns></returns>
7181
+ </member>
7182
+ <member name="M:Castle.Windsor.IWindsorContainer.Resolve(System.Type)">
7183
+ <summary>
7184
+ Returns a component instance by the service
7185
+ </summary>
7186
+ <param name = "service"></param>
7187
+ <returns></returns>
7188
+ </member>
7189
+ <member name="M:Castle.Windsor.IWindsorContainer.Resolve(System.Type,System.Collections.IDictionary)">
7190
+ <summary>
7191
+ Returns a component instance by the service
7192
+ </summary>
7193
+ <param name = "service"></param>
7194
+ <param name = "arguments"></param>
7195
+ <returns></returns>
7196
+ </member>
7197
+ <member name="M:Castle.Windsor.IWindsorContainer.Resolve(System.Type,System.Object)">
7198
+ <summary>
7199
+ Returns a component instance by the service
7200
+ </summary>
7201
+ <param name = "service"></param>
7202
+ <param name = "argumentsAsAnonymousType"></param>
7203
+ <returns></returns>
7032
7204
  </member>
7033
7205
  <member name="M:Castle.Windsor.IWindsorContainer.Resolve``1">
7034
7206
  <summary>
7035
- Returns a component instance by the service
7207
+ Returns a component instance by the service
7036
7208
  </summary>
7037
- <typeparam name="T">Service type</typeparam>
7209
+ <typeparam name = "T">Service type</typeparam>
7038
7210
  <returns>The component instance</returns>
7039
7211
  </member>
7040
7212
  <member name="M:Castle.Windsor.IWindsorContainer.Resolve``1(System.Collections.IDictionary)">
7041
7213
  <summary>
7042
- Returns a component instance by the service
7214
+ Returns a component instance by the service
7043
7215
  </summary>
7044
- <typeparam name="T">Service type</typeparam>
7045
- <param name="arguments"></param>
7216
+ <typeparam name = "T">Service type</typeparam>
7217
+ <param name = "arguments"></param>
7218
+ <returns>The component instance</returns>
7219
+ </member>
7220
+ <member name="M:Castle.Windsor.IWindsorContainer.Resolve``1(System.Object)">
7221
+ <summary>
7222
+ Returns a component instance by the service
7223
+ </summary>
7224
+ <typeparam name = "T">Service type</typeparam>
7225
+ <param name = "argumentsAsAnonymousType"></param>
7046
7226
  <returns>The component instance</returns>
7047
7227
  </member>
7048
7228
  <member name="M:Castle.Windsor.IWindsorContainer.Resolve``1(System.String)">
7049
7229
  <summary>
7050
- Returns a component instance by the key
7230
+ Returns a component instance by the key
7051
7231
  </summary>
7052
- <param name="key">Component's key</param>
7053
- <typeparam name="T">Service type</typeparam>
7232
+ <param name = "key">Component's key</param>
7233
+ <typeparam name = "T">Service type</typeparam>
7054
7234
  <returns>The Component instance</returns>
7055
7235
  </member>
7056
7236
  <member name="M:Castle.Windsor.IWindsorContainer.Resolve``1(System.String,System.Collections.IDictionary)">
7057
7237
  <summary>
7058
- Returns a component instance by the key
7238
+ Returns a component instance by the key
7059
7239
  </summary>
7060
- <typeparam name="T">Service type</typeparam>
7061
- <param name="key">Component's key</param>
7062
- <param name="arguments"></param>
7240
+ <typeparam name = "T">Service type</typeparam>
7241
+ <param name = "key">Component's key</param>
7242
+ <param name = "arguments"></param>
7243
+ <returns>The Component instance</returns>
7244
+ </member>
7245
+ <member name="M:Castle.Windsor.IWindsorContainer.Resolve``1(System.String,System.Object)">
7246
+ <summary>
7247
+ Returns a component instance by the key
7248
+ </summary>
7249
+ <typeparam name = "T">Service type</typeparam>
7250
+ <param name = "key">Component's key</param>
7251
+ <param name = "argumentsAsAnonymousType"></param>
7063
7252
  <returns>The Component instance</returns>
7064
7253
  </member>
7065
7254
  <member name="M:Castle.Windsor.IWindsorContainer.Resolve(System.String,System.Type,System.Collections.IDictionary)">
7066
7255
  <summary>
7067
- Returns a component instance by the key
7256
+ Returns a component instance by the key
7068
7257
  </summary>
7069
- <param name="key"></param>
7070
- <param name="service"></param>
7071
- <param name="arguments"></param>
7258
+ <param name = "key"></param>
7259
+ <param name = "service"></param>
7260
+ <param name = "arguments"></param>
7261
+ <returns></returns>
7262
+ </member>
7263
+ <member name="M:Castle.Windsor.IWindsorContainer.Resolve(System.String,System.Type,System.Object)">
7264
+ <summary>
7265
+ Returns a component instance by the key
7266
+ </summary>
7267
+ <param name = "key"></param>
7268
+ <param name = "service"></param>
7269
+ <param name = "argumentsAsAnonymousType"></param>
7072
7270
  <returns></returns>
7073
7271
  </member>
7074
7272
  <member name="M:Castle.Windsor.IWindsorContainer.ResolveAll``1">
7075
7273
  <summary>
7076
- Resolve all valid components that match this type.
7274
+ Resolve all valid components that match this type.
7077
7275
  </summary>
7078
- <typeparam name="T">The service type</typeparam>
7276
+ <typeparam name = "T">The service type</typeparam>
7079
7277
  </member>
7080
7278
  <member name="M:Castle.Windsor.IWindsorContainer.ResolveAll(System.Type)">
7081
7279
  <summary>
7082
- Resolve all valid components that mathc this service
7083
- <param name="service">the service to match</param>
7280
+ Resolve all valid components that mathc this service
7281
+ <param name = "service">the service to match</param>
7084
7282
  </summary>
7085
7283
  </member>
7086
7284
  <member name="M:Castle.Windsor.IWindsorContainer.ResolveAll(System.Type,System.Collections.IDictionary)">
7087
7285
  <summary>
7088
- Resolve all valid components that mathc this service
7089
- <param name="service">the service to match</param>
7090
- <param name="arguments">Arguments to resolve the service</param>
7286
+ Resolve all valid components that mathc this service
7287
+ <param name = "service">the service to match</param>
7288
+ <param name = "arguments">Arguments to resolve the service</param>
7289
+ </summary>
7290
+ </member>
7291
+ <member name="M:Castle.Windsor.IWindsorContainer.ResolveAll(System.Type,System.Object)">
7292
+ <summary>
7293
+ Resolve all valid components that mathc this service
7294
+ <param name = "service">the service to match</param>
7295
+ <param name = "argumentsAsAnonymousType">Arguments to resolve the service</param>
7091
7296
  </summary>
7092
7297
  </member>
7093
7298
  <member name="M:Castle.Windsor.IWindsorContainer.ResolveAll``1(System.Collections.IDictionary)">
7094
7299
  <summary>
7095
- Resolve all valid components that match this type.
7096
- <typeparam name="T">The service type</typeparam>
7097
- <param name="arguments">Arguments to resolve the service</param>
7300
+ Resolve all valid components that match this type.
7301
+ <typeparam name = "T">The service type</typeparam>
7302
+ <param name = "arguments">Arguments to resolve the service</param>
7098
7303
  </summary>
7099
7304
  </member>
7100
- <member name="P:Castle.Windsor.IWindsorContainer.Name">
7305
+ <member name="M:Castle.Windsor.IWindsorContainer.ResolveAll``1(System.Object)">
7101
7306
  <summary>
7102
- Gets the container's name
7307
+ Resolve all valid components that match this type.
7308
+ <typeparam name = "T">The service type</typeparam>
7309
+ <param name = "argumentsAsAnonymousType">Arguments to resolve the service</param>
7103
7310
  </summary>
7104
- <remarks>
7105
- Only useful when child containers are being used
7106
- </remarks>
7107
- <value>The container's name.</value>
7108
7311
  </member>
7109
7312
  <member name="P:Castle.Windsor.IWindsorContainer.Item(System.String)">
7110
7313
  <summary>
7111
- Shortcut to <see cref="M:Castle.Windsor.IWindsorContainer.Resolve``1(System.String)"/>
7314
+ Shortcut to <see cref="M:Castle.Windsor.IWindsorContainer.Resolve``1(System.String)"/>
7112
7315
  </summary>
7113
7316
  </member>
7114
7317
  <member name="P:Castle.Windsor.IWindsorContainer.Item(System.Type)">
7115
7318
  <summary>
7116
- Shortcut to <see cref="M:Castle.Windsor.IWindsorContainer.Resolve(System.Type)"/>
7319
+ Shortcut to <see cref="M:Castle.Windsor.IWindsorContainer.Resolve(System.Type)"/>
7117
7320
  </summary>
7118
7321
  </member>
7119
7322
  <member name="P:Castle.Windsor.IWindsorContainer.Kernel">
7120
7323
  <summary>
7121
- Returns the inner instance of the MicroKernel
7324
+ Returns the inner instance of the MicroKernel
7325
+ </summary>
7326
+ </member>
7327
+ <member name="P:Castle.Windsor.IWindsorContainer.Name">
7328
+ <summary>
7329
+ Gets the container's name
7122
7330
  </summary>
7331
+ <remarks>
7332
+ Only useful when child containers are being used
7333
+ </remarks>
7334
+ <value>The container's name.</value>
7123
7335
  </member>
7124
7336
  <member name="P:Castle.Windsor.IWindsorContainer.Parent">
7125
7337
  <summary>
7126
- Gets or sets the parent container if this instance
7127
- is a sub container.
7338
+ Gets or sets the parent container if this instance
7339
+ is a sub container.
7128
7340
  </summary>
7129
7341
  </member>
7130
7342
  <member name="T:Castle.Windsor.IContainerAccessor">
@@ -7186,57 +7398,57 @@
7186
7398
  </member>
7187
7399
  <member name="T:Castle.Windsor.WindsorContainer">
7188
7400
  <summary>
7189
- Implementation of <see cref="T:Castle.Windsor.IWindsorContainer"/>
7190
- which delegates to <see cref="T:Castle.MicroKernel.IKernel"/> implementation.
7401
+ Implementation of <see cref="T:Castle.Windsor.IWindsorContainer"/>
7402
+ which delegates to <see cref="T:Castle.MicroKernel.IKernel"/> implementation.
7191
7403
  </summary>
7192
7404
  </member>
7193
7405
  <member name="M:Castle.Windsor.WindsorContainer.#ctor">
7194
7406
  <summary>
7195
- Constructs a container without any external
7196
- configuration reference
7407
+ Constructs a container without any external
7408
+ configuration reference
7197
7409
  </summary>
7198
7410
  </member>
7199
7411
  <member name="M:Castle.Windsor.WindsorContainer.#ctor(Castle.MicroKernel.SubSystems.Configuration.IConfigurationStore)">
7200
7412
  <summary>
7201
- Constructs a container using the specified
7202
- <see cref="T:Castle.MicroKernel.SubSystems.Configuration.IConfigurationStore"/> implementation.
7413
+ Constructs a container using the specified
7414
+ <see cref="T:Castle.MicroKernel.SubSystems.Configuration.IConfigurationStore"/> implementation.
7203
7415
  </summary>
7204
7416
  <param name="store">The instance of an <see cref="T:Castle.MicroKernel.SubSystems.Configuration.IConfigurationStore"/> implementation.</param>
7205
7417
  </member>
7206
7418
  <member name="M:Castle.Windsor.WindsorContainer.#ctor(Castle.Windsor.Configuration.IConfigurationInterpreter)">
7207
7419
  <summary>
7208
- Constructs a container using the specified
7209
- <see cref="T:Castle.Windsor.Configuration.IConfigurationInterpreter"/> implementation.
7420
+ Constructs a container using the specified
7421
+ <see cref="T:Castle.Windsor.Configuration.IConfigurationInterpreter"/> implementation.
7210
7422
  </summary>
7211
7423
  <param name="interpreter">The instance of an <see cref="T:Castle.Windsor.Configuration.IConfigurationInterpreter"/> implementation.</param>
7212
7424
  </member>
7213
7425
  <member name="M:Castle.Windsor.WindsorContainer.#ctor(Castle.Windsor.Configuration.IConfigurationInterpreter,Castle.Windsor.IEnvironmentInfo)">
7214
7426
  <summary>
7215
- Initializes a new instance of the <see cref="T:Castle.Windsor.WindsorContainer"/> class.
7427
+ Initializes a new instance of the <see cref="T:Castle.Windsor.WindsorContainer"/> class.
7216
7428
  </summary>
7217
7429
  <param name="interpreter">The interpreter.</param>
7218
7430
  <param name="environmentInfo">The environment info.</param>
7219
7431
  </member>
7220
7432
  <member name="M:Castle.Windsor.WindsorContainer.#ctor(Castle.MicroKernel.IKernel,Castle.Windsor.IComponentsInstaller)">
7221
7433
  <summary>
7222
- Constructs a container using the specified <see cref="T:Castle.MicroKernel.IKernel"/>
7223
- implementation. Rarely used.
7434
+ Constructs a container using the specified <see cref="T:Castle.MicroKernel.IKernel"/>
7435
+ implementation. Rarely used.
7224
7436
  </summary>
7225
7437
  <remarks>
7226
- This constructs sets the Kernel.ProxyFactory property to
7227
- <c>Proxy.DefaultProxyFactory</c>
7438
+ This constructs sets the Kernel.ProxyFactory property to
7439
+ <c>Proxy.DefaultProxyFactory</c>
7228
7440
  </remarks>
7229
7441
  <param name="kernel">Kernel instance</param>
7230
7442
  <param name="installer">Installer instance</param>
7231
7443
  </member>
7232
7444
  <member name="M:Castle.Windsor.WindsorContainer.#ctor(System.String,Castle.MicroKernel.IKernel,Castle.Windsor.IComponentsInstaller)">
7233
7445
  <summary>
7234
- Constructs a container using the specified <see cref="T:Castle.MicroKernel.IKernel"/>
7235
- implementation. Rarely used.
7446
+ Constructs a container using the specified <see cref="T:Castle.MicroKernel.IKernel"/>
7447
+ implementation. Rarely used.
7236
7448
  </summary>
7237
7449
  <remarks>
7238
- This constructs sets the Kernel.ProxyFactory property to
7239
- <c>Proxy.DefaultProxyFactory</c>
7450
+ This constructs sets the Kernel.ProxyFactory property to
7451
+ <c>Proxy.DefaultProxyFactory</c>
7240
7452
  </remarks>
7241
7453
  <param name="name">Container's name</param>
7242
7454
  <param name="kernel">Kernel instance</param>
@@ -7244,100 +7456,103 @@
7244
7456
  </member>
7245
7457
  <member name="M:Castle.Windsor.WindsorContainer.#ctor(Castle.MicroKernel.IProxyFactory)">
7246
7458
  <summary>
7247
- Constructs with a given <see cref="T:Castle.MicroKernel.IProxyFactory"/>.
7459
+ Constructs with a given <see cref="T:Castle.MicroKernel.IProxyFactory"/>.
7248
7460
  </summary>
7249
7461
  <param name="proxyFactory">A instance of an <see cref="T:Castle.MicroKernel.IProxyFactory"/>.</param>
7250
7462
  </member>
7251
7463
  <member name="M:Castle.Windsor.WindsorContainer.#ctor(Castle.Windsor.IWindsorContainer,Castle.Windsor.Configuration.IConfigurationInterpreter)">
7252
7464
  <summary>
7253
- Constructs a container assigning a parent container
7254
- before starting the dependency resolution.
7465
+ Constructs a container assigning a parent container
7466
+ before starting the dependency resolution.
7255
7467
  </summary>
7256
7468
  <param name="parent">The instance of an <see cref="T:Castle.Windsor.IWindsorContainer"/></param>
7257
7469
  <param name="interpreter">The instance of an <see cref="T:Castle.Windsor.Configuration.IConfigurationInterpreter"/> implementation</param>
7258
7470
  </member>
7259
7471
  <member name="M:Castle.Windsor.WindsorContainer.#ctor(System.String,Castle.Windsor.IWindsorContainer,Castle.Windsor.Configuration.IConfigurationInterpreter)">
7260
7472
  <summary>
7261
- Initializes a new instance of the <see cref="T:Castle.Windsor.WindsorContainer"/> class.
7473
+ Initializes a new instance of the <see cref="T:Castle.Windsor.WindsorContainer"/> class.
7262
7474
  </summary>
7263
7475
  <param name="name">The container's name.</param>
7264
7476
  <param name="parent">The parent.</param>
7265
7477
  <param name="interpreter">The interpreter.</param>
7266
7478
  </member>
7267
- <member name="M:Castle.Windsor.WindsorContainer.AddFacility(System.String,Castle.MicroKernel.IFacility)">
7479
+ <member name="M:Castle.Windsor.WindsorContainer.Dispose">
7268
7480
  <summary>
7269
- Registers a facility within the kernel.
7481
+ Executes Dispose on underlying <see cref="T:Castle.MicroKernel.IKernel"/>
7270
7482
  </summary>
7271
- <param name="key"></param>
7272
- <param name="facility"></param>
7273
7483
  </member>
7274
- <member name="M:Castle.Windsor.WindsorContainer.AddFacility``1(System.String)">
7484
+ <member name="M:Castle.Windsor.WindsorContainer.GetService(System.Type)">
7275
7485
  <summary>
7276
- Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
7486
+ Gets the service object of the specified type.
7277
7487
  </summary>
7278
- <typeparam name="T">The facility type.</typeparam>
7279
- <param name="key"></param>
7280
- <returns></returns>
7488
+ <returns>
7489
+ A service object of type serviceType.
7490
+ </returns>
7491
+ <param name = "serviceType">An object that specifies the type of service object to get. </param>
7281
7492
  </member>
7282
- <member name="M:Castle.Windsor.WindsorContainer.AddFacility``1(System.String,System.Action{``0})">
7493
+ <member name="M:Castle.Windsor.WindsorContainer.GetService``1">
7283
7494
  <summary>
7284
- Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
7495
+ Gets the service object of the specified type.
7285
7496
  </summary>
7286
- <typeparam name="T">The facility type.</typeparam>
7287
- <param name="key"></param>
7288
- <param name="onCreate">The callback for creation.</param>
7289
- <returns></returns>
7497
+ <returns>
7498
+ A service object of type serviceType.
7499
+ </returns>
7290
7500
  </member>
7291
- <member name="M:Castle.Windsor.WindsorContainer.AddFacility``1(System.String,System.Func{``0,System.Object})">
7501
+ <member name="M:Castle.Windsor.WindsorContainer.AddChildContainer(Castle.Windsor.IWindsorContainer)">
7292
7502
  <summary>
7293
- Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
7503
+ Registers a subcontainer. The components exposed
7504
+ by this container will be accessible from subcontainers.
7294
7505
  </summary>
7295
- <typeparam name="T">The facility type.</typeparam>
7296
- <param name="key"></param>
7297
- <param name="onCreate">The callback for creation.</param>
7298
- <returns></returns>
7506
+ <param name = "childContainer"></param>
7299
7507
  </member>
7300
- <member name="M:Castle.Windsor.WindsorContainer.AddFacility``1">
7508
+ <member name="M:Castle.Windsor.WindsorContainer.AddComponent(System.String,System.Type)">
7301
7509
  <summary>
7302
- Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
7510
+ Adds a component to be managed by the container
7303
7511
  </summary>
7304
- <typeparam name="T">The facility type.</typeparam>
7305
- <returns></returns>
7512
+ <param name = "key"></param>
7513
+ <param name = "classType"></param>
7306
7514
  </member>
7307
- <member name="M:Castle.Windsor.WindsorContainer.AddFacility``1(System.Action{``0})">
7515
+ <member name="M:Castle.Windsor.WindsorContainer.AddComponent(System.String,System.Type,System.Type)">
7308
7516
  <summary>
7309
- Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
7517
+ Adds a component to be managed by the container
7310
7518
  </summary>
7311
- <typeparam name="T">The facility type.</typeparam>
7312
- <param name="onCreate">The callback for creation.</param>
7313
- <returns></returns>
7519
+ <param name = "key"></param>
7520
+ <param name = "serviceType"></param>
7521
+ <param name = "classType"></param>
7314
7522
  </member>
7315
- <member name="M:Castle.Windsor.WindsorContainer.AddFacility``1(System.Func{``0,System.Object})">
7523
+ <member name="M:Castle.Windsor.WindsorContainer.AddComponent``1">
7316
7524
  <summary>
7317
- Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
7525
+ Adds a component to be managed by the container.
7526
+ The key to obtain the component will be the FullName of the type.
7318
7527
  </summary>
7319
- <typeparam name="T">The facility type.</typeparam>
7320
- <param name="onCreate">The callback for creation.</param>
7321
- <returns></returns>
7528
+ <typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
7322
7529
  </member>
7323
- <member name="M:Castle.Windsor.WindsorContainer.AddComponent(System.String,System.Type)">
7530
+ <member name="M:Castle.Windsor.WindsorContainer.AddComponent``1(System.String)">
7324
7531
  <summary>
7325
- Adds a component to be managed by the container
7532
+ Adds a component to be managed by the container
7326
7533
  </summary>
7327
- <param name="key"></param>
7328
- <param name="classType"></param>
7534
+ <typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
7535
+ <param name="key">The key by which the component gets indexed.</param>
7329
7536
  </member>
7330
- <member name="M:Castle.Windsor.WindsorContainer.AddComponent(System.String,System.Type,System.Type)">
7537
+ <member name="M:Castle.Windsor.WindsorContainer.AddComponent``2(System.String)">
7331
7538
  <summary>
7332
- Adds a component to be managed by the container
7539
+ Adds a component to be managed by the container
7333
7540
  </summary>
7334
- <param name="key"></param>
7335
- <param name="serviceType"></param>
7336
- <param name="classType"></param>
7541
+ <typeparam name="I">The service <see cref="T:System.Type"/> that the component implements.</typeparam>
7542
+ <typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
7543
+ <param name="key">The key by which the component gets indexed.</param>
7544
+ </member>
7545
+ <member name="M:Castle.Windsor.WindsorContainer.AddComponent``2">
7546
+ <summary>
7547
+ Adds a component to be managed by the container
7548
+ The key to obtain the component will be the FullName of the type.
7549
+ </summary>
7550
+ <typeparam name="I">The service <see cref="T:System.Type"/> that the component implements.</typeparam>
7551
+ <typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
7337
7552
  </member>
7338
7553
  <member name="M:Castle.Windsor.WindsorContainer.AddComponentLifeStyle(System.String,System.Type,Castle.Core.LifestyleType)">
7339
7554
  <summary>
7340
- Adds a component to be managed by the container
7555
+ Adds a component to be managed by the container
7341
7556
  </summary>
7342
7557
  <param name="key">The key by which the component gets indexed.</param>
7343
7558
  <param name="classType">The <see cref="T:System.Type"/> to manage.</param>
@@ -7345,293 +7560,338 @@
7345
7560
  </member>
7346
7561
  <member name="M:Castle.Windsor.WindsorContainer.AddComponentLifeStyle(System.String,System.Type,System.Type,Castle.Core.LifestyleType)">
7347
7562
  <summary>
7348
- Adds a component to be managed by the container
7563
+ Adds a component to be managed by the container
7349
7564
  </summary>
7350
7565
  <param name="key">The key by which the component gets indexed.</param>
7351
7566
  <param name="serviceType">The service <see cref="T:System.Type"/> that the component implements.</param>
7352
7567
  <param name="classType">The <see cref="T:System.Type"/> to manage.</param>
7353
7568
  <param name="lifestyle">The <see cref="T:Castle.Core.LifestyleType"/> with which to manage the component.</param>
7354
7569
  </member>
7355
- <member name="M:Castle.Windsor.WindsorContainer.AddComponent``1">
7570
+ <member name="M:Castle.Windsor.WindsorContainer.AddComponentLifeStyle``1(Castle.Core.LifestyleType)">
7356
7571
  <summary>
7357
- Adds a component to be managed by the container.
7358
- The key to obtain the component will be the FullName of the type.
7572
+ Adds a component to be managed by the container.
7573
+ The key to obtain the component will be the FullName of the type.
7359
7574
  </summary>
7360
7575
  <typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
7576
+ <param name="lifestyle">The <see cref="T:Castle.Core.LifestyleType"/> with which to manage the component.</param>
7361
7577
  </member>
7362
- <member name="M:Castle.Windsor.WindsorContainer.AddComponent``1(System.String)">
7578
+ <member name="M:Castle.Windsor.WindsorContainer.AddComponentLifeStyle``2(Castle.Core.LifestyleType)">
7363
7579
  <summary>
7364
- Adds a component to be managed by the container
7580
+ Adds a component to be managed by the container
7581
+ The key to obtain the component will be the FullName of the type.
7365
7582
  </summary>
7583
+ <typeparam name="I">The service <see cref="T:System.Type"/> that the component implements.</typeparam>
7366
7584
  <typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
7367
- <param name="key">The key by which the component gets indexed.</param>
7585
+ <param name="lifestyle">The <see cref="T:Castle.Core.LifestyleType"/> with which to manage the component.</param>
7368
7586
  </member>
7369
- <member name="M:Castle.Windsor.WindsorContainer.AddComponentLifeStyle``1(Castle.Core.LifestyleType)">
7587
+ <member name="M:Castle.Windsor.WindsorContainer.AddComponentLifeStyle``1(System.String,Castle.Core.LifestyleType)">
7370
7588
  <summary>
7371
- Adds a component to be managed by the container.
7372
- The key to obtain the component will be the FullName of the type.
7589
+ Adds a component to be managed by the container
7373
7590
  </summary>
7374
7591
  <typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
7592
+ <param name="key">The key by which the component gets indexed.</param>
7375
7593
  <param name="lifestyle">The <see cref="T:Castle.Core.LifestyleType"/> with which to manage the component.</param>
7376
7594
  </member>
7377
- <member name="M:Castle.Windsor.WindsorContainer.AddComponent``2(System.String)">
7595
+ <member name="M:Castle.Windsor.WindsorContainer.AddComponentLifeStyle``2(System.String,Castle.Core.LifestyleType)">
7378
7596
  <summary>
7379
- Adds a component to be managed by the container
7597
+ Adds a component to be managed by the container
7380
7598
  </summary>
7381
7599
  <typeparam name="I">The service <see cref="T:System.Type"/> that the component implements.</typeparam>
7382
7600
  <typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
7383
7601
  <param name="key">The key by which the component gets indexed.</param>
7602
+ <param name="lifestyle">The <see cref="T:Castle.Core.LifestyleType"/> with which to manage the component.</param>
7384
7603
  </member>
7385
- <member name="M:Castle.Windsor.WindsorContainer.AddComponentLifeStyle``2(Castle.Core.LifestyleType)">
7604
+ <member name="M:Castle.Windsor.WindsorContainer.AddComponentProperties``2(System.Collections.IDictionary)">
7386
7605
  <summary>
7387
- Adds a component to be managed by the container
7388
- The key to obtain the component will be the FullName of the type.
7606
+ Adds a concrete class and an interface
7607
+ as a component and specify the extended properties.
7608
+ Used by facilities, mostly.
7609
+ The key to obtain the component will be the FullName of the type.
7389
7610
  </summary>
7390
- <typeparam name="I">The service <see cref="T:System.Type"/> that the component implements.</typeparam>
7391
- <typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
7392
- <param name="lifestyle">The <see cref="T:Castle.Core.LifestyleType"/> with which to manage the component.</param>
7611
+ <typeparam name = "I"></typeparam>
7612
+ <typeparam name = "T"></typeparam>
7613
+ <param name = "extendedProperties"></param>
7393
7614
  </member>
7394
- <member name="M:Castle.Windsor.WindsorContainer.AddComponentLifeStyle``1(System.String,Castle.Core.LifestyleType)">
7615
+ <member name="M:Castle.Windsor.WindsorContainer.AddComponentProperties``2(System.String,System.Collections.IDictionary)">
7395
7616
  <summary>
7396
- Adds a component to be managed by the container
7617
+ Adds a concrete class and an interface
7618
+ as a component and specify the extended properties.
7619
+ Used by facilities, mostly.
7397
7620
  </summary>
7398
- <typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
7399
- <param name="key">The key by which the component gets indexed.</param>
7400
- <param name="lifestyle">The <see cref="T:Castle.Core.LifestyleType"/> with which to manage the component.</param>
7621
+ <typeparam name = "I"></typeparam>
7622
+ <typeparam name = "T"></typeparam>
7623
+ <param name = "key"></param>
7624
+ <param name = "extendedProperties"></param>
7401
7625
  </member>
7402
- <member name="M:Castle.Windsor.WindsorContainer.AddComponent``2">
7626
+ <member name="M:Castle.Windsor.WindsorContainer.AddComponentWithProperties``1(System.Collections.IDictionary)">
7403
7627
  <summary>
7404
- Adds a component to be managed by the container
7405
- The key to obtain the component will be the FullName of the type.
7628
+ Adds a concrete class as a component and specify the extended properties.
7629
+ Used by facilities, mostly.
7630
+ The key to obtain the component will be the FullName of the type.
7406
7631
  </summary>
7407
- <typeparam name="I">The service <see cref="T:System.Type"/> that the component implements.</typeparam>
7408
- <typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
7632
+ <typeparam name = "T"></typeparam>
7633
+ <param name = "extendedProperties"></param>
7409
7634
  </member>
7410
- <member name="M:Castle.Windsor.WindsorContainer.AddComponentLifeStyle``2(System.String,Castle.Core.LifestyleType)">
7635
+ <member name="M:Castle.Windsor.WindsorContainer.AddComponentWithProperties``1(System.String,System.Collections.IDictionary)">
7411
7636
  <summary>
7412
- Adds a component to be managed by the container
7637
+ Adds a concrete class as a component and specify the extended properties.
7638
+ Used by facilities, mostly.
7413
7639
  </summary>
7414
- <typeparam name="I">The service <see cref="T:System.Type"/> that the component implements.</typeparam>
7415
- <typeparam name="T">The <see cref="T:System.Type"/> to manage.</typeparam>
7416
- <param name="key">The key by which the component gets indexed.</param>
7417
- <param name="lifestyle">The <see cref="T:Castle.Core.LifestyleType"/> with which to manage the component.</param>
7640
+ <typeparam name = "T"></typeparam>
7641
+ <param name = "key"></param>
7642
+ <param name = "extendedProperties"></param>
7418
7643
  </member>
7419
- <member name="M:Castle.Windsor.WindsorContainer.AddComponentWithProperties``1(System.Collections.IDictionary)">
7644
+ <member name="M:Castle.Windsor.WindsorContainer.AddFacility(System.String,Castle.MicroKernel.IFacility)">
7420
7645
  <summary>
7421
- Adds a concrete class as a component and specify the extended properties.
7422
- Used by facilities, mostly.
7423
- The key to obtain the component will be the FullName of the type.
7646
+ Registers a facility within the kernel.
7424
7647
  </summary>
7425
- <typeparam name="T"></typeparam>
7426
- <param name="extendedProperties"></param>
7648
+ <param name = "key"></param>
7649
+ <param name = "facility"></param>
7427
7650
  </member>
7428
- <member name="M:Castle.Windsor.WindsorContainer.AddComponentWithProperties``1(System.String,System.Collections.IDictionary)">
7651
+ <member name="M:Castle.Windsor.WindsorContainer.AddFacility``1(System.String)">
7429
7652
  <summary>
7430
- Adds a concrete class as a component and specify the extended properties.
7431
- Used by facilities, mostly.
7653
+ Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
7432
7654
  </summary>
7433
- <typeparam name="T"></typeparam>
7434
- <param name="key"></param>
7435
- <param name="extendedProperties"></param>
7655
+ <typeparam name="T">The facility type.</typeparam>
7656
+ <param name="key"></param>
7657
+ <returns></returns>
7436
7658
  </member>
7437
- <member name="M:Castle.Windsor.WindsorContainer.AddComponentProperties``2(System.Collections.IDictionary)">
7659
+ <member name="M:Castle.Windsor.WindsorContainer.AddFacility``1(System.String,System.Action{``0})">
7438
7660
  <summary>
7439
- Adds a concrete class and an interface
7440
- as a component and specify the extended properties.
7441
- Used by facilities, mostly.
7442
- The key to obtain the component will be the FullName of the type.
7661
+ Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
7443
7662
  </summary>
7444
- <typeparam name="I"></typeparam>
7445
- <typeparam name="T"></typeparam>
7446
- <param name="extendedProperties"></param>
7663
+ <typeparam name="T">The facility type.</typeparam>
7664
+ <param name="key"></param>
7665
+ <param name="onCreate">The callback for creation.</param>
7666
+ <returns></returns>
7447
7667
  </member>
7448
- <member name="M:Castle.Windsor.WindsorContainer.AddComponentProperties``2(System.String,System.Collections.IDictionary)">
7668
+ <member name="M:Castle.Windsor.WindsorContainer.AddFacility``1(System.String,System.Func{``0,System.Object})">
7449
7669
  <summary>
7450
- Adds a concrete class and an interface
7451
- as a component and specify the extended properties.
7452
- Used by facilities, mostly.
7670
+ Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
7453
7671
  </summary>
7454
- <typeparam name="I"></typeparam>
7455
- <typeparam name="T"></typeparam>
7672
+ <typeparam name="T">The facility type.</typeparam>
7456
7673
  <param name="key"></param>
7457
- <param name="extendedProperties"></param>
7674
+ <param name="onCreate">The callback for creation.</param>
7675
+ <returns></returns>
7458
7676
  </member>
7459
- <member name="M:Castle.Windsor.WindsorContainer.Register(Castle.MicroKernel.Registration.IRegistration[])">
7677
+ <member name="M:Castle.Windsor.WindsorContainer.AddFacility``1">
7460
7678
  <summary>
7461
- Registers the components described by the <see cref="T:Castle.MicroKernel.Registration.ComponentRegistration`1"/>s
7462
- with the <see cref="T:Castle.Windsor.IWindsorContainer"/>.
7463
- <param name="registrations">The component registrations.</param>
7464
- <returns>The container.</returns>
7679
+ Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
7465
7680
  </summary>
7681
+ <typeparam name="T">The facility type.</typeparam>
7682
+ <returns></returns>
7683
+ </member>
7684
+ <member name="M:Castle.Windsor.WindsorContainer.AddFacility``1(System.Action{``0})">
7685
+ <summary>
7686
+ Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
7687
+ </summary>
7688
+ <typeparam name="T">The facility type.</typeparam>
7689
+ <param name="onCreate">The callback for creation.</param>
7690
+ <returns></returns>
7691
+ </member>
7692
+ <member name="M:Castle.Windsor.WindsorContainer.AddFacility``1(System.Func{``0,System.Object})">
7693
+ <summary>
7694
+ Creates and adds an <see cref="T:Castle.MicroKernel.IFacility"/> facility to the container.
7695
+ </summary>
7696
+ <typeparam name="T">The facility type.</typeparam>
7697
+ <param name="onCreate">The callback for creation.</param>
7698
+ <returns></returns>
7699
+ </member>
7700
+ <member name="M:Castle.Windsor.WindsorContainer.GetChildContainer(System.String)">
7701
+ <summary>
7702
+ Gets a child container instance by name.
7703
+ </summary>
7704
+ <param name = "name">The container's name.</param>
7705
+ <returns>The child container instance or null</returns>
7466
7706
  </member>
7467
7707
  <member name="M:Castle.Windsor.WindsorContainer.Install(Castle.MicroKernel.Registration.IWindsorInstaller[])">
7468
7708
  <summary>
7469
- Installs the components provided by the <see cref="T:Castle.MicroKernel.Registration.IWindsorInstaller"/>s
7470
- with the <see cref="T:Castle.Windsor.IWindsorContainer"/>.
7471
- <param name="installers">The component installers.</param>
7472
- <returns>The container.</returns>
7709
+ Installs the components provided by the <see cref="T:Castle.MicroKernel.Registration.IWindsorInstaller"/>s
7710
+ with the <see cref="T:Castle.Windsor.IWindsorContainer"/>.
7711
+ <param name="installers">The component installers.</param>
7712
+ <returns>The container.</returns>
7713
+ </summary>
7714
+ </member>
7715
+ <member name="M:Castle.Windsor.WindsorContainer.Register(Castle.MicroKernel.Registration.IRegistration[])">
7716
+ <summary>
7717
+ Registers the components described by the <see cref="T:Castle.MicroKernel.Registration.ComponentRegistration`1"/>s
7718
+ with the <see cref="T:Castle.Windsor.IWindsorContainer"/>.
7719
+ <param name="registrations">The component registrations.</param>
7720
+ <returns>The container.</returns>
7473
7721
  </summary>
7474
7722
  </member>
7723
+ <member name="M:Castle.Windsor.WindsorContainer.Release(System.Object)">
7724
+ <summary>
7725
+ Releases a component instance
7726
+ </summary>
7727
+ <param name = "instance"></param>
7728
+ </member>
7729
+ <member name="M:Castle.Windsor.WindsorContainer.RemoveChildContainer(Castle.Windsor.IWindsorContainer)">
7730
+ <summary>
7731
+ Removes (unregisters) a subcontainer. The components exposed by this container
7732
+ will no longer be accessible to the child container.
7733
+ </summary>
7734
+ <param name = "childContainer"></param>
7735
+ </member>
7475
7736
  <member name="M:Castle.Windsor.WindsorContainer.Resolve(System.Type,System.Collections.IDictionary)">
7476
7737
  <summary>
7477
- Returns a component instance by the service
7738
+ Returns a component instance by the service
7478
7739
  </summary>
7479
- <param name="service"></param>
7480
- <param name="arguments"></param>
7740
+ <param name = "service"></param>
7741
+ <param name = "arguments"></param>
7481
7742
  <returns></returns>
7482
7743
  </member>
7483
- <member name="M:Castle.Windsor.WindsorContainer.Resolve(System.String,System.Collections.IDictionary)">
7744
+ <member name="M:Castle.Windsor.WindsorContainer.Resolve(System.Type,System.Object)">
7484
7745
  <summary>
7485
- Returns a component instance by the key
7746
+ Returns a component instance by the service
7486
7747
  </summary>
7487
- <param name="key"></param>
7488
- <param name="arguments"></param>
7748
+ <param name = "service"></param>
7749
+ <param name = "argumentsAsAnonymousType"></param>
7489
7750
  <returns></returns>
7490
7751
  </member>
7491
- <member name="M:Castle.Windsor.WindsorContainer.Resolve(System.Type)">
7752
+ <member name="M:Castle.Windsor.WindsorContainer.Resolve(System.String,System.Collections.IDictionary)">
7492
7753
  <summary>
7493
- Returns a component instance by the service
7754
+ Returns a component instance by the key
7494
7755
  </summary>
7495
- <param name="service"></param>
7756
+ <param name = "key"></param>
7757
+ <param name = "arguments"></param>
7496
7758
  <returns></returns>
7497
7759
  </member>
7498
- <member name="M:Castle.Windsor.WindsorContainer.ResolveAll``1">
7760
+ <member name="M:Castle.Windsor.WindsorContainer.Resolve(System.String,System.Object)">
7499
7761
  <summary>
7500
- Resolve all valid components that match this type.
7762
+ Returns a component instance by the key
7501
7763
  </summary>
7502
- <typeparam name="T">The service type</typeparam>
7764
+ <param name = "key"></param>
7765
+ <param name = "argumentsAsAnonymousType"></param>
7766
+ <returns></returns>
7503
7767
  </member>
7504
- <member name="M:Castle.Windsor.WindsorContainer.ResolveAll``1(System.Collections.IDictionary)">
7768
+ <member name="M:Castle.Windsor.WindsorContainer.Resolve(System.Type)">
7505
7769
  <summary>
7506
- Resolve all valid components that match this type.
7507
- <typeparam name="T">The service type</typeparam>
7508
- <param name="arguments">Arguments to resolve the service</param>
7770
+ Returns a component instance by the service
7509
7771
  </summary>
7772
+ <param name = "service"></param>
7773
+ <returns></returns>
7510
7774
  </member>
7511
7775
  <member name="M:Castle.Windsor.WindsorContainer.Resolve(System.String,System.Type)">
7512
7776
  <summary>
7513
- Returns a component instance by the key
7777
+ Returns a component instance by the key
7514
7778
  </summary>
7515
- <param name="key"></param>
7516
- <param name="service"></param>
7779
+ <param name = "key"></param>
7780
+ <param name = "service"></param>
7517
7781
  <returns></returns>
7518
7782
  </member>
7519
7783
  <member name="M:Castle.Windsor.WindsorContainer.Resolve(System.String,System.Type,System.Collections.IDictionary)">
7520
7784
  <summary>
7521
- Returns a component instance by the key
7785
+ Returns a component instance by the key
7522
7786
  </summary>
7523
- <param name="key"></param>
7524
- <param name="service"></param>
7525
- <param name="arguments"></param>
7787
+ <param name = "key"></param>
7788
+ <param name = "service"></param>
7789
+ <param name = "arguments"></param>
7526
7790
  <returns></returns>
7527
7791
  </member>
7528
- <member name="M:Castle.Windsor.WindsorContainer.Resolve``1(System.Collections.IDictionary)">
7792
+ <member name="M:Castle.Windsor.WindsorContainer.Resolve(System.String,System.Type,System.Object)">
7529
7793
  <summary>
7530
- Returns a component instance by the service
7794
+ Returns a component instance by the key
7531
7795
  </summary>
7532
- <typeparam name="T"></typeparam>
7533
- <param name="arguments"></param>
7796
+ <param name = "key"></param>
7797
+ <param name = "service"></param>
7798
+ <param name = "argumentsAsAnonymousType"></param>
7534
7799
  <returns></returns>
7535
7800
  </member>
7536
- <member name="M:Castle.Windsor.WindsorContainer.Resolve``1(System.String,System.Collections.IDictionary)">
7801
+ <member name="M:Castle.Windsor.WindsorContainer.Resolve``1(System.Collections.IDictionary)">
7537
7802
  <summary>
7538
- Returns a component instance by the key
7803
+ Returns a component instance by the service
7539
7804
  </summary>
7540
- <param name="key"></param>
7541
- <param name="arguments"></param>
7805
+ <typeparam name = "T"></typeparam>
7806
+ <param name = "arguments"></param>
7542
7807
  <returns></returns>
7543
7808
  </member>
7544
- <member name="M:Castle.Windsor.WindsorContainer.Resolve``1">
7809
+ <member name="M:Castle.Windsor.WindsorContainer.Resolve``1(System.Object)">
7545
7810
  <summary>
7546
- Returns a component instance by the service
7811
+ Returns a component instance by the service
7547
7812
  </summary>
7548
- <typeparam name="T"></typeparam>
7813
+ <typeparam name = "T"></typeparam>
7814
+ <param name = "argumentsAsAnonymousType"></param>
7549
7815
  <returns></returns>
7550
7816
  </member>
7551
- <member name="M:Castle.Windsor.WindsorContainer.Resolve``1(System.String)">
7817
+ <member name="M:Castle.Windsor.WindsorContainer.Resolve``1(System.String,System.Collections.IDictionary)">
7552
7818
  <summary>
7553
- Returns a component instance by the key
7819
+ Returns a component instance by the key
7554
7820
  </summary>
7555
- <param name="key"></param>
7821
+ <param name = "key"></param>
7822
+ <param name = "arguments"></param>
7556
7823
  <returns></returns>
7557
7824
  </member>
7558
- <member name="M:Castle.Windsor.WindsorContainer.Release(System.Object)">
7825
+ <member name="M:Castle.Windsor.WindsorContainer.Resolve``1(System.String,System.Object)">
7559
7826
  <summary>
7560
- Releases a component instance
7827
+ Returns a component instance by the key
7561
7828
  </summary>
7562
- <param name="instance"></param>
7829
+ <param name = "key"></param>
7830
+ <param name = "argumentsAsAnonymousType"></param>
7831
+ <returns></returns>
7563
7832
  </member>
7564
- <member name="M:Castle.Windsor.WindsorContainer.AddChildContainer(Castle.Windsor.IWindsorContainer)">
7833
+ <member name="M:Castle.Windsor.WindsorContainer.Resolve``1">
7565
7834
  <summary>
7566
- Registers a subcontainer. The components exposed
7567
- by this container will be accessible from subcontainers.
7835
+ Returns a component instance by the service
7568
7836
  </summary>
7569
- <param name="childContainer"></param>
7837
+ <typeparam name = "T"></typeparam>
7838
+ <returns></returns>
7570
7839
  </member>
7571
- <member name="M:Castle.Windsor.WindsorContainer.RemoveChildContainer(Castle.Windsor.IWindsorContainer)">
7840
+ <member name="M:Castle.Windsor.WindsorContainer.Resolve``1(System.String)">
7572
7841
  <summary>
7573
- Removes (unregisters) a subcontainer. The components exposed by this container
7574
- will no longer be accessible to the child container.
7842
+ Returns a component instance by the key
7575
7843
  </summary>
7576
- <param name="childContainer"></param>
7844
+ <param name = "key"></param>
7845
+ <returns></returns>
7577
7846
  </member>
7578
- <member name="M:Castle.Windsor.WindsorContainer.GetChildContainer(System.String)">
7847
+ <member name="M:Castle.Windsor.WindsorContainer.ResolveAll``1">
7579
7848
  <summary>
7580
- Gets a child container instance by name.
7849
+ Resolve all valid components that match this type.
7581
7850
  </summary>
7582
- <param name="name">The container's name.</param>
7583
- <returns>The child container instance or null</returns>
7851
+ <typeparam name = "T">The service type</typeparam>
7584
7852
  </member>
7585
- <member name="M:Castle.Windsor.WindsorContainer.GetService(System.Type)">
7853
+ <member name="M:Castle.Windsor.WindsorContainer.ResolveAll``1(System.Collections.IDictionary)">
7586
7854
  <summary>
7587
- Gets the service object of the specified type.
7855
+ Resolve all valid components that match this type.
7856
+ <typeparam name = "T">The service type</typeparam>
7857
+ <param name = "arguments">Arguments to resolve the service</param>
7588
7858
  </summary>
7589
- <returns>
7590
- A service object of type serviceType.
7591
- </returns>
7592
- <param name="serviceType">An object that specifies the type of service object to get. </param>
7593
7859
  </member>
7594
- <member name="M:Castle.Windsor.WindsorContainer.GetService``1">
7860
+ <member name="M:Castle.Windsor.WindsorContainer.ResolveAll``1(System.Object)">
7595
7861
  <summary>
7596
- Gets the service object of the specified type.
7862
+ Resolve all valid components that match this type.
7863
+ <typeparam name = "T">The service type</typeparam>
7864
+ <param name = "argumentsAsAnonymousType">Arguments to resolve the service</param>
7597
7865
  </summary>
7598
- <returns>
7599
- A service object of type serviceType.
7600
- </returns>
7601
7866
  </member>
7602
- <member name="M:Castle.Windsor.WindsorContainer.Dispose">
7867
+ <member name="P:Castle.Windsor.WindsorContainer.Item(System.String)">
7603
7868
  <summary>
7604
- Executes Dispose on underlying <see cref="T:Castle.MicroKernel.IKernel"/>
7869
+ Shortcut to the method <see cref="M:Castle.Windsor.WindsorContainer.Resolve(System.String,System.Collections.IDictionary)"/>
7605
7870
  </summary>
7606
7871
  </member>
7607
- <member name="P:Castle.Windsor.WindsorContainer.Name">
7872
+ <member name="P:Castle.Windsor.WindsorContainer.Item(System.Type)">
7608
7873
  <summary>
7609
- Gets the container's name
7874
+ Shortcut to the method <see cref="M:Castle.Windsor.WindsorContainer.Resolve(System.Type)"/>
7610
7875
  </summary>
7611
- <remarks>
7612
- Only useful when child containers are being used
7613
- </remarks>
7614
- <value>The container's name.</value>
7615
7876
  </member>
7616
7877
  <member name="P:Castle.Windsor.WindsorContainer.Kernel">
7617
7878
  <summary>
7618
- Returns the inner instance of the MicroKernel
7619
- </summary>
7620
- </member>
7621
- <member name="P:Castle.Windsor.WindsorContainer.Parent">
7622
- <summary>
7623
- Gets or sets the parent container if this instance
7624
- is a sub container.
7879
+ Returns the inner instance of the MicroKernel
7625
7880
  </summary>
7626
7881
  </member>
7627
- <member name="P:Castle.Windsor.WindsorContainer.Item(System.String)">
7882
+ <member name="P:Castle.Windsor.WindsorContainer.Name">
7628
7883
  <summary>
7629
- Shortcut to the method <see cref="M:Castle.Windsor.WindsorContainer.Resolve(System.String,System.Collections.IDictionary)"/>
7884
+ Gets the container's name
7630
7885
  </summary>
7886
+ <remarks>
7887
+ Only useful when child containers are being used
7888
+ </remarks>
7889
+ <value>The container's name.</value>
7631
7890
  </member>
7632
- <member name="P:Castle.Windsor.WindsorContainer.Item(System.Type)">
7891
+ <member name="P:Castle.Windsor.WindsorContainer.Parent">
7633
7892
  <summary>
7634
- Shortcut to the method <see cref="M:Castle.Windsor.WindsorContainer.Resolve(System.Type)"/>
7893
+ Gets or sets the parent container if this instance
7894
+ is a sub container.
7635
7895
  </summary>
7636
7896
  </member>
7637
7897
  </members>