mvcturbine-unity 2.1.0.0.20100820

Sign up to get free protection for your applications and to get access to all the features.
Binary file
@@ -0,0 +1,148 @@
1
+ <?xml version="1.0"?>
2
+ <doc>
3
+ <assembly>
4
+ <name>MvcTurbine.Unity</name>
5
+ </assembly>
6
+ <members>
7
+ <member name="T:MvcTurbine.Unity.UnityServiceLocator">
8
+ <summary>
9
+ Default implementation of the <seealso cref="T:MvcTurbine.ComponentModel.IServiceLocator"/> contract with Unity IoC.
10
+ </summary>
11
+ <remarks>
12
+ To learn more about Unity, please visit its website: http://www.codeplex.com/unity
13
+ </remarks>
14
+ </member>
15
+ <member name="M:MvcTurbine.Unity.UnityServiceLocator.#ctor">
16
+ <summary>
17
+ Creates an instance of the locator with an empty <seealso cref="T:Microsoft.Practices.Unity.IUnityContainer"/> instance.
18
+ </summary>
19
+ </member>
20
+ <member name="M:MvcTurbine.Unity.UnityServiceLocator.#ctor(Microsoft.Practices.Unity.IUnityContainer)">
21
+ <summary>
22
+ Creates an instance of the locator with the specified <seealso cref="T:Microsoft.Practices.Unity.IUnityContainer"/> instance.
23
+ </summary>
24
+ <param name="container">Instance of <seealso cref="T:Microsoft.Practices.Unity.IUnityContainer"/> to use.</param>
25
+ </member>
26
+ <member name="M:MvcTurbine.Unity.UnityServiceLocator.Batch">
27
+ <summary>
28
+ Gets the associated <see cref="T:MvcTurbine.ComponentModel.IServiceRegistrar"/> to process.
29
+ </summary>
30
+ <returns></returns>
31
+ </member>
32
+ <member name="M:MvcTurbine.Unity.UnityServiceLocator.Resolve``1">
33
+ <summary>
34
+ Resolves the service of the specified type.
35
+ </summary>
36
+ <typeparam name="T">Type of service to resolve.</typeparam>
37
+ <returns>An instance of the type, null otherwise.</returns>
38
+ </member>
39
+ <member name="M:MvcTurbine.Unity.UnityServiceLocator.Resolve``1(System.String)">
40
+ <summary>
41
+ Resolves the service of the specified type by the given string key.
42
+ </summary>
43
+ <typeparam name="T">Type of service to resolve.</typeparam>
44
+ <param name="key">Unique key to distinguish the service.</param>
45
+ <returns>An instance of the type, null otherwise.</returns>
46
+ </member>
47
+ <member name="M:MvcTurbine.Unity.UnityServiceLocator.Resolve``1(System.Type)">
48
+ <summary>
49
+ Resolves the service of the specified type by the given type key.
50
+ </summary>
51
+ <typeparam name="T">Type of service to resolve.</typeparam>
52
+ <param name="type">Key type of the service.</param>
53
+ <returns>An instance of the type, null otherwise.</returns>
54
+ </member>
55
+ <member name="M:MvcTurbine.Unity.UnityServiceLocator.Resolve(System.Type)">
56
+ <summary>
57
+ Resolves the service of the specified type by the given type key.
58
+ </summary>
59
+ <param name="type">Type of service to resolve.</param>
60
+ <returns>An instance of the type, null otherwise</returns>
61
+ </member>
62
+ <member name="M:MvcTurbine.Unity.UnityServiceLocator.ResolveServices``1">
63
+ <summary>
64
+ Resolves the list of services of type <see cref="!:T"/> that are registered
65
+ within the locator.
66
+ </summary>
67
+ <typeparam name="T">Type of the service to resolve.</typeparam>
68
+ <returns>A list of service of type <see cref="!:T"/>, null otherwise.</returns>
69
+ </member>
70
+ <member name="M:MvcTurbine.Unity.UnityServiceLocator.Register``1(System.Type)">
71
+ <summary>
72
+ Registers the implemation type, <paramref name="implType"/>, with the locator under
73
+ the <see cref="!:Interface"/> service type.
74
+ </summary>
75
+ <typeparam name="Interface">Type of the service to register.</typeparam>
76
+ <param name="implType">Implementation type to use for registration.</param>
77
+ </member>
78
+ <member name="M:MvcTurbine.Unity.UnityServiceLocator.Register``2">
79
+ <summary>
80
+ Registers the implemation type, <see cref="!:Implementation"/>, with the locator under
81
+ the <see cref="!:Interface"/> service type.
82
+ </summary>
83
+ <typeparam name="Interface">Type of the service to register.</typeparam>
84
+ <typeparam name="Implementation">Implementation type to use for registration.
85
+ </typeparam>
86
+ </member>
87
+ <member name="M:MvcTurbine.Unity.UnityServiceLocator.Register``2(System.String)">
88
+ <summary>
89
+ Registers the implemation type, <see cref="!:Implementation"/>, with the locator under
90
+ the <see cref="!:Interface"/> service type.
91
+ </summary>
92
+ <typeparam name="Interface">Type of the service to register.</typeparam>
93
+ <typeparam name="Implementation">Implementation type to use for registration.
94
+ </typeparam>
95
+ <param name="key">Unique key to distinguish the service.</param>
96
+ </member>
97
+ <member name="M:MvcTurbine.Unity.UnityServiceLocator.Register(System.String,System.Type)">
98
+ <summary>
99
+ Registers the implementation type, <paramref name="type"/>, with the locator
100
+ by the given string key.
101
+ </summary>
102
+ <param name="key">Unique key to distinguish the service.</param>
103
+ <param name="type">Implementation type to use.</param>
104
+ </member>
105
+ <member name="M:MvcTurbine.Unity.UnityServiceLocator.Register(System.Type,System.Type)">
106
+ <summary>
107
+ Registers the implementation type, <paramref name="implType"/>, with the locator
108
+ by the given service type, <paramref name="serviceType"/>
109
+ </summary>
110
+ <param name="serviceType">Type of the service to register.</param>
111
+ <param name="implType">Implementation to associate with the service.</param>
112
+ </member>
113
+ <member name="M:MvcTurbine.Unity.UnityServiceLocator.Register``1(``0)">
114
+ <summary>
115
+ Registers the instance of type, <typeparamref name="Interface"/>, with the locator.
116
+ </summary>
117
+ <typeparam name="Interface">Type of the service to register.</typeparam>
118
+ <param name="instance">Instance of the type to register.</param>
119
+ </member>
120
+ <member name="M:MvcTurbine.Unity.UnityServiceLocator.Release(System.Object)">
121
+ <summary>
122
+ Releases (disposes) the service instance from within the locator.
123
+ </summary>
124
+ <param name="instance">Instance of a service to dipose from the locator.</param>
125
+ </member>
126
+ <member name="M:MvcTurbine.Unity.UnityServiceLocator.Reset">
127
+ <summary>
128
+ Resets the locator to its initial state clearing all registrations.
129
+ </summary>
130
+ </member>
131
+ <member name="M:MvcTurbine.Unity.UnityServiceLocator.Dispose">
132
+ <summary>
133
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
134
+ </summary>
135
+ <filterpriority>2</filterpriority>
136
+ </member>
137
+ <member name="P:MvcTurbine.Unity.UnityServiceLocator.Container">
138
+ <summary>
139
+ Gets the current <seealso cref="T:Microsoft.Practices.Unity.IUnityContainer"/> associated with this instance.
140
+ </summary>
141
+ </member>
142
+ <member name="T:MvcTurbine.Unity.RegistrationStub">
143
+ <summary>
144
+ This class is for stubbing purposes only.
145
+ </summary>
146
+ </member>
147
+ </members>
148
+ </doc>
metadata ADDED
@@ -0,0 +1,104 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mvcturbine-unity
3
+ version: !ruby/object:Gem::Version
4
+ hash: 40201543
5
+ prerelease: false
6
+ segments:
7
+ - 2
8
+ - 1
9
+ - 0
10
+ - 0
11
+ - 20100820
12
+ version: 2.1.0.0.20100820
13
+ platform: ruby
14
+ authors:
15
+ - Javier Lozano
16
+ autorequire:
17
+ bindir: bin
18
+ cert_chain: []
19
+
20
+ date: 2010-08-20 00:00:00 -06:00
21
+ default_executable:
22
+ dependencies:
23
+ - !ruby/object:Gem::Dependency
24
+ name: mvcturbine
25
+ prerelease: false
26
+ requirement: &id001 !ruby/object:Gem::Requirement
27
+ none: false
28
+ requirements:
29
+ - - "="
30
+ - !ruby/object:Gem::Version
31
+ hash: 40201543
32
+ segments:
33
+ - 2
34
+ - 1
35
+ - 0
36
+ - 0
37
+ - 20100820
38
+ version: 2.1.0.0.20100820
39
+ type: :runtime
40
+ version_requirements: *id001
41
+ - !ruby/object:Gem::Dependency
42
+ name: unity
43
+ prerelease: false
44
+ requirement: &id002 !ruby/object:Gem::Requirement
45
+ none: false
46
+ requirements:
47
+ - - "="
48
+ - !ruby/object:Gem::Version
49
+ hash: 79
50
+ segments:
51
+ - 1
52
+ - 2
53
+ - 0
54
+ - 0
55
+ version: 1.2.0.0
56
+ type: :runtime
57
+ version_requirements: *id002
58
+ description: MVC Turbine is a plugin for ASP.NET MVC that has IoC baked in and auto-wires controllers, binders, view engines, http modules, etc. that reside within your application. Thus you worry more about what your application should do, rather than how it should do it. This is the Unity adapter for MVC Turbine.
59
+ email: jglozano@gmail.com
60
+ executables: []
61
+
62
+ extensions: []
63
+
64
+ extra_rdoc_files: []
65
+
66
+ files:
67
+ - lib/MvcTurbine.Unity.dll
68
+ - lib/MvcTurbine.Unity.xml
69
+ has_rdoc: true
70
+ homepage: http://mvcturbine.codeplex.com/
71
+ licenses: []
72
+
73
+ post_install_message:
74
+ rdoc_options: []
75
+
76
+ require_paths:
77
+ - lib
78
+ required_ruby_version: !ruby/object:Gem::Requirement
79
+ none: false
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ hash: 3
84
+ segments:
85
+ - 0
86
+ version: "0"
87
+ required_rubygems_version: !ruby/object:Gem::Requirement
88
+ none: false
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ hash: 3
93
+ segments:
94
+ - 0
95
+ version: "0"
96
+ requirements: []
97
+
98
+ rubyforge_project: mvcturbine-unity
99
+ rubygems_version: 1.3.7
100
+ signing_key:
101
+ specification_version: 3
102
+ summary: MVC Turbine (Unity) - A simple, extensible framework to streamline your ASP.NET MVC development
103
+ test_files: []
104
+