nservicebus 2.0.0.1281
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/NServiceBus.Core.dll +0 -0
- data/lib/NServiceBus.Core.xml +93438 -0
- data/lib/NServiceBus.Host.exe +0 -0
- data/lib/NServiceBus.Host.xml +677 -0
- data/lib/NServiceBus.Testing.dll +0 -0
- data/lib/NServiceBus.Testing.xml +5896 -0
- data/lib/NServiceBus.dll +0 -0
- data/lib/NServiceBus.xml +1097 -0
- metadata +97 -0
Binary file
|
@@ -0,0 +1,677 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<doc>
|
3
|
+
<assembly>
|
4
|
+
<name>NServiceBus.Host</name>
|
5
|
+
</assembly>
|
6
|
+
<members>
|
7
|
+
<member name="T:NServiceBus.AsA_Server">
|
8
|
+
<summary>
|
9
|
+
Indicates this endpoint is a server.
|
10
|
+
As such will be set up as a transactional endpoint using impersonation, not purging messages on startup.
|
11
|
+
</summary>
|
12
|
+
</member>
|
13
|
+
<member name="T:NServiceBus.AsA_Client">
|
14
|
+
<summary>
|
15
|
+
Indicates this endpoint is a client.
|
16
|
+
As such will be set up as a non-transactional endpoint with no impersonation and purging messages on startup.
|
17
|
+
</summary>
|
18
|
+
</member>
|
19
|
+
<member name="T:NServiceBus.AsA_Publisher">
|
20
|
+
<summary>
|
21
|
+
Indicates this endpoint is a publisher.
|
22
|
+
This is compatible with <see cref="T:NServiceBus.AsA_Server" /> but not <see cref="T:NServiceBus.AsA_Client" />.
|
23
|
+
</summary>
|
24
|
+
</member>
|
25
|
+
<member name="T:NServiceBus.IConfigureLogging">
|
26
|
+
<summary>
|
27
|
+
Called in order to configure logging.
|
28
|
+
|
29
|
+
If you want logging configured regardless of profiles, do not use this interface,
|
30
|
+
instead implement <see cref="T:NServiceBus.IWantCustomLogging" /> on the class which implements <see cref="T:NServiceBus.IConfigureThisEndpoint" />.
|
31
|
+
|
32
|
+
Implementors should work against the generic version of this interface.
|
33
|
+
</summary>
|
34
|
+
</member>
|
35
|
+
<member name="M:NServiceBus.IConfigureLogging.Configure(NServiceBus.IConfigureThisEndpoint)">
|
36
|
+
<summary>
|
37
|
+
Performs all logging configuration.
|
38
|
+
</summary>
|
39
|
+
</member>
|
40
|
+
<member name="T:NServiceBus.IConfigureLoggingForProfile`1">
|
41
|
+
<summary>
|
42
|
+
Called in order to configure logging for the given profile type.
|
43
|
+
If an implementation isn't found for a given profile, then the search continues
|
44
|
+
recursively up that profile's inheritance hierarchy.
|
45
|
+
</summary>
|
46
|
+
<typeparam name="T">
|
47
|
+
</typeparam>
|
48
|
+
</member>
|
49
|
+
<member name="T:NServiceBus.IConfigureThisEndpoint">
|
50
|
+
<summary>
|
51
|
+
Indicate that the implementing class will specify configuration.
|
52
|
+
</summary>
|
53
|
+
</member>
|
54
|
+
<member name="T:NServiceBus.IHandleProfile">
|
55
|
+
<summary>
|
56
|
+
Abstraction for code which will be called when the given profile is active.
|
57
|
+
Implementors should implement IHandleProfile{T} rather than IHandleProfile.
|
58
|
+
</summary>
|
59
|
+
</member>
|
60
|
+
<member name="M:NServiceBus.IHandleProfile.ProfileActivated">
|
61
|
+
<summary>
|
62
|
+
Called when a given profile is activated.
|
63
|
+
</summary>
|
64
|
+
</member>
|
65
|
+
<member name="T:NServiceBus.IHandleProfile`1">
|
66
|
+
<summary>
|
67
|
+
Generic abstraction for code which will be called when the given profile is active.
|
68
|
+
</summary>
|
69
|
+
<typeparam name="T">
|
70
|
+
</typeparam>
|
71
|
+
</member>
|
72
|
+
<member name="T:NServiceBus.Host.Internal.AssemblyScanner">
|
73
|
+
<summary>
|
74
|
+
Helpers for assembly scanning operations
|
75
|
+
</summary>
|
76
|
+
</member>
|
77
|
+
<member name="M:NServiceBus.Host.Internal.AssemblyScanner.GetScannableAssemblies">
|
78
|
+
<summary>
|
79
|
+
Gets a list with assemblies that can be scanned
|
80
|
+
</summary>
|
81
|
+
<returns>
|
82
|
+
</returns>
|
83
|
+
</member>
|
84
|
+
<member name="T:NServiceBus.Host.Internal.GenericHost">
|
85
|
+
<summary>
|
86
|
+
Implementation which hooks into TopShelf's Start/Stop lifecycle.
|
87
|
+
</summary>
|
88
|
+
</member>
|
89
|
+
<member name="M:NServiceBus.Host.Internal.GenericHost.Start">
|
90
|
+
<summary>
|
91
|
+
Does startup work.
|
92
|
+
</summary>
|
93
|
+
</member>
|
94
|
+
<member name="M:NServiceBus.Host.Internal.GenericHost.Stop">
|
95
|
+
<summary>
|
96
|
+
Does shutdown work.
|
97
|
+
</summary>
|
98
|
+
</member>
|
99
|
+
<member name="M:NServiceBus.Host.Internal.GenericHost.#ctor(System.Type,System.String[])">
|
100
|
+
<summary>
|
101
|
+
Accepts the type which will specify the users custom configuration.
|
102
|
+
This type should implement <see cref="T:NServiceBus.IConfigureThisEndpoint" />.
|
103
|
+
</summary>
|
104
|
+
<param name="endpointType">
|
105
|
+
</param>
|
106
|
+
<param name="args">
|
107
|
+
</param>
|
108
|
+
</member>
|
109
|
+
<member name="E:NServiceBus.Host.Internal.GenericHost.ConfigurationComplete">
|
110
|
+
<summary>
|
111
|
+
Event raised when configuration is complete
|
112
|
+
</summary>
|
113
|
+
</member>
|
114
|
+
<member name="T:NServiceBus.Host.Internal.InMemorySagaPersister">
|
115
|
+
<summary>
|
116
|
+
In memory implementation of ISagaPersister for quick development.
|
117
|
+
</summary>
|
118
|
+
</member>
|
119
|
+
<member name="T:NServiceBus.Host.Internal.InMemorySubscriptionStorage">
|
120
|
+
<summary>
|
121
|
+
In memory storage of subscriptions
|
122
|
+
</summary>
|
123
|
+
</member>
|
124
|
+
<member name="T:NServiceBus.Host.Internal.Logging.IntegrationLoggingHandler">
|
125
|
+
<summary>
|
126
|
+
Handles logging configuration for the integration profile.
|
127
|
+
</summary>
|
128
|
+
</member>
|
129
|
+
<member name="T:NServiceBus.Host.Internal.Logging.LiteLoggingHandler">
|
130
|
+
<summary>
|
131
|
+
Handles logging configuration for the lite profile.
|
132
|
+
</summary>
|
133
|
+
</member>
|
134
|
+
<member name="T:NServiceBus.Host.Internal.Logging.ProductionLoggingHandler">
|
135
|
+
<summary>
|
136
|
+
Handles logging configuration for the production profile
|
137
|
+
</summary>
|
138
|
+
</member>
|
139
|
+
<member name="T:NServiceBus.Host.Internal.ProfileHandlers.InstallDtcProfileHandler">
|
140
|
+
<summary>
|
141
|
+
Installs the distributed transaction coordinator.
|
142
|
+
</summary>
|
143
|
+
</member>
|
144
|
+
<member name="T:NServiceBus.Host.Internal.ProfileHandlers.InstallMsmqProfileHandler">
|
145
|
+
<summary>
|
146
|
+
Installs and starts MSMQ if necessary.
|
147
|
+
</summary>
|
148
|
+
</member>
|
149
|
+
<member name="T:NServiceBus.Host.Internal.ProfileHandlers.InstallPerformanceCountersProfileHandler">
|
150
|
+
<summary>
|
151
|
+
Installs performance counters.
|
152
|
+
</summary>
|
153
|
+
</member>
|
154
|
+
<member name="T:NServiceBus.IWantTheEndpointConfig">
|
155
|
+
<summary>
|
156
|
+
Implementors will be provided with a reference to IConfigureThisEndpoint.
|
157
|
+
Implementors must inherit either <see cref="T:NServiceBus.IHandleProfile" /> or <see cref="T:NServiceBus.IWantCustomInitialization" />.
|
158
|
+
</summary>
|
159
|
+
</member>
|
160
|
+
<member name="P:NServiceBus.IWantTheEndpointConfig.Config">
|
161
|
+
<summary>
|
162
|
+
This property will be set by the infrastructure.
|
163
|
+
</summary>
|
164
|
+
</member>
|
165
|
+
<member name="T:NServiceBus.Host.Internal.ProfileHandlers.PerformanceCountersProfileHandler">
|
166
|
+
<summary>
|
167
|
+
Handles the PerformanceCounters profile.
|
168
|
+
</summary>
|
169
|
+
</member>
|
170
|
+
<member name="T:NServiceBus.Host.Internal.ProfileManager">
|
171
|
+
<summary>
|
172
|
+
Scans and loads profile handlers from the given assemblies
|
173
|
+
</summary>
|
174
|
+
</member>
|
175
|
+
<member name="M:NServiceBus.Host.Internal.ProfileManager.#ctor(System.Collections.Generic.IEnumerable{System.Reflection.Assembly},NServiceBus.IConfigureThisEndpoint,System.String[])">
|
176
|
+
<summary>
|
177
|
+
Initializes the manager with the assemblies to scan and the endpoint configuration to use
|
178
|
+
</summary>
|
179
|
+
<param name="assembliesToScan">
|
180
|
+
</param>
|
181
|
+
<param name="specifier">
|
182
|
+
</param>
|
183
|
+
<param name="profileArgs">
|
184
|
+
</param>
|
185
|
+
</member>
|
186
|
+
<member name="M:NServiceBus.Host.Internal.ProfileManager.GetLoggingConfigurer">
|
187
|
+
<summary>
|
188
|
+
Returns an object to configure logging based on the specification and profiles passed in.
|
189
|
+
</summary>
|
190
|
+
<returns>
|
191
|
+
</returns>
|
192
|
+
</member>
|
193
|
+
<member name="M:NServiceBus.Host.Internal.ProfileManager.ActivateProfileHandlers">
|
194
|
+
<summary>
|
195
|
+
Activates the profilehandlers that handle the previously identified active profiles.
|
196
|
+
</summary>
|
197
|
+
<returns>
|
198
|
+
</returns>
|
199
|
+
</member>
|
200
|
+
<member name="T:NServiceBus.Host.Internal.RoleManager">
|
201
|
+
<summary>
|
202
|
+
Handles the client/server bus configuration.
|
203
|
+
</summary>
|
204
|
+
</member>
|
205
|
+
<member name="M:NServiceBus.Host.Internal.RoleManager.ConfigureBusForEndpoint(NServiceBus.IConfigureThisEndpoint)">
|
206
|
+
<summary>
|
207
|
+
Checks if the specifier is a client or server and sets up the MsmqTransport and UnicastBus approproiately.
|
208
|
+
</summary>
|
209
|
+
<param name="specifier">
|
210
|
+
</param>
|
211
|
+
</member>
|
212
|
+
<member name="T:NServiceBus.Host.Internal.WcfServiceHost">
|
213
|
+
<summary>
|
214
|
+
A specialized service host that adds a default endpoint if non is specified in config
|
215
|
+
</summary>
|
216
|
+
</member>
|
217
|
+
<member name="M:NServiceBus.Host.Internal.WcfServiceHost.#ctor(System.Type)">
|
218
|
+
<summary>
|
219
|
+
Constructs the host with the given service type
|
220
|
+
</summary>
|
221
|
+
<param name="t">
|
222
|
+
</param>
|
223
|
+
</member>
|
224
|
+
<member name="M:NServiceBus.Host.Internal.WcfServiceHost.AddDefaultEndpoint(System.Type,System.ServiceModel.Channels.Binding,System.String)">
|
225
|
+
<summary>
|
226
|
+
Adds the given endpoint unless its already configured in app.config
|
227
|
+
</summary>
|
228
|
+
<param name="contractType">
|
229
|
+
</param>
|
230
|
+
<param name="binding">
|
231
|
+
</param>
|
232
|
+
<param name="address">
|
233
|
+
</param>
|
234
|
+
</member>
|
235
|
+
<member name="T:NServiceBus.IProfile">
|
236
|
+
<summary>
|
237
|
+
Marker interface to indicate a run-time profile.
|
238
|
+
Implementors must be concrete class - interfaces are not supported.
|
239
|
+
</summary>
|
240
|
+
</member>
|
241
|
+
<member name="T:NServiceBus.ISpecifyMessageHandlerOrdering">
|
242
|
+
<summary>
|
243
|
+
Specify the order in which message handlers will be invoked.
|
244
|
+
</summary>
|
245
|
+
</member>
|
246
|
+
<member name="M:NServiceBus.ISpecifyMessageHandlerOrdering.SpecifyOrder(NServiceBus.Order)">
|
247
|
+
<summary>
|
248
|
+
In this method, use the order object to specify the order in which message handlers will be activated.
|
249
|
+
</summary>
|
250
|
+
<param name="order">
|
251
|
+
</param>
|
252
|
+
</member>
|
253
|
+
<member name="T:NServiceBus.IWantCustomInitialization">
|
254
|
+
<summary>
|
255
|
+
If you want to specify your own container or serializer,
|
256
|
+
implement this interface on the class which implements <see cref="T:NServiceBus.IConfigureThisEndpoint" />.
|
257
|
+
|
258
|
+
Implementors will be invoked before the endpoint starts up.
|
259
|
+
Dependency injection is not provided for these types.
|
260
|
+
</summary>
|
261
|
+
</member>
|
262
|
+
<member name="M:NServiceBus.IWantCustomInitialization.Init">
|
263
|
+
<summary>
|
264
|
+
Perform initialization logic.
|
265
|
+
</summary>
|
266
|
+
</member>
|
267
|
+
<member name="T:NServiceBus.IWantCustomLogging">
|
268
|
+
<summary>
|
269
|
+
If you want to specify your own logging,
|
270
|
+
implement this interface on the class which implements <see cref="T:NServiceBus.IConfigureThisEndpoint" />.
|
271
|
+
</summary>
|
272
|
+
</member>
|
273
|
+
<member name="M:NServiceBus.IWantCustomLogging.Init">
|
274
|
+
<summary>
|
275
|
+
Initialize logging.
|
276
|
+
</summary>
|
277
|
+
</member>
|
278
|
+
<member name="T:NServiceBus.IWantToRunAtStartup">
|
279
|
+
<summary>
|
280
|
+
Implementers will be invoked when the endpoint starts up.
|
281
|
+
Dependency injection is provided for these types.
|
282
|
+
</summary>
|
283
|
+
</member>
|
284
|
+
<member name="M:NServiceBus.IWantToRunAtStartup.Run">
|
285
|
+
<summary>
|
286
|
+
Method called at startup.
|
287
|
+
</summary>
|
288
|
+
</member>
|
289
|
+
<member name="M:NServiceBus.IWantToRunAtStartup.Stop">
|
290
|
+
<summary>
|
291
|
+
Method called on shutdown.
|
292
|
+
</summary>
|
293
|
+
</member>
|
294
|
+
<member name="T:NServiceBus.Order">
|
295
|
+
<summary>
|
296
|
+
Used to specify the order in which message handlers will be activated.
|
297
|
+
</summary>
|
298
|
+
</member>
|
299
|
+
<member name="M:NServiceBus.Order.Specify``1">
|
300
|
+
<summary>
|
301
|
+
Specifies that the given type will be activated before all others.
|
302
|
+
</summary>
|
303
|
+
<typeparam name="TFirst">
|
304
|
+
</typeparam>
|
305
|
+
</member>
|
306
|
+
<member name="M:NServiceBus.Order.Specify``1(NServiceBus.First{``0})">
|
307
|
+
<summary>
|
308
|
+
Specifies an ordering of multiple types using the syntax:
|
309
|
+
First{H1}.Then{H2}().Then{H3}()... etc
|
310
|
+
</summary>
|
311
|
+
<typeparam name="T">
|
312
|
+
</typeparam>
|
313
|
+
<param name="ordering">
|
314
|
+
</param>
|
315
|
+
</member>
|
316
|
+
<member name="T:NServiceBus.InstallDtc">
|
317
|
+
<summary>
|
318
|
+
Profile indicating that you want the host to automatically check if the Distributed Transaction Coordinator
|
319
|
+
windows service has its security settings configured correctly, and if they aren't, set the correct settings,
|
320
|
+
check that the service is running, and if it isn't, run the MSDTC service.
|
321
|
+
</summary>
|
322
|
+
</member>
|
323
|
+
<member name="T:NServiceBus.InstallMsmq">
|
324
|
+
<summary>
|
325
|
+
Profile indicating that you want the host to automatically check if MSMQ is installed,
|
326
|
+
install MSMQ if it isn't, check that the right components of MSMQ are active,
|
327
|
+
change the active MSMQ components as needed, check that the MSMQ service is running,
|
328
|
+
and run the MSMQ service if it isn't.
|
329
|
+
</summary>
|
330
|
+
</member>
|
331
|
+
<member name="T:NServiceBus.InstallPerformanceCounters">
|
332
|
+
<summary>
|
333
|
+
Profile indicating that you want the host to install the performance counters.
|
334
|
+
</summary>
|
335
|
+
</member>
|
336
|
+
<member name="T:NServiceBus.Integration">
|
337
|
+
<summary>
|
338
|
+
Indicates that infrastructure suitable for integration environments be used.
|
339
|
+
</summary>
|
340
|
+
</member>
|
341
|
+
<member name="T:NServiceBus.Lite">
|
342
|
+
<summary>
|
343
|
+
Indicates that the lightest weight infrastructure should be used.
|
344
|
+
</summary>
|
345
|
+
</member>
|
346
|
+
<member name="T:NServiceBus.PerformanceCounters">
|
347
|
+
<summary>
|
348
|
+
Indicates that performance counters should be published.
|
349
|
+
</summary>
|
350
|
+
</member>
|
351
|
+
<member name="T:NServiceBus.Production">
|
352
|
+
<summary>
|
353
|
+
Indicates that the infrastructure should configure itself for production.
|
354
|
+
</summary>
|
355
|
+
</member>
|
356
|
+
<member name="T:NServiceBus.Host.Program">
|
357
|
+
<summary>
|
358
|
+
Entry point to the process.
|
359
|
+
</summary>
|
360
|
+
</member>
|
361
|
+
<member name="M:NServiceBus.Host.Program.GetEndpointId(System.Object)">
|
362
|
+
<summary>
|
363
|
+
Gives a string which serves to identify the endpoint.
|
364
|
+
</summary>
|
365
|
+
<param name="endpointConfiguration">
|
366
|
+
</param>
|
367
|
+
<returns>
|
368
|
+
</returns>
|
369
|
+
</member>
|
370
|
+
<member name="P:NServiceBus.Host.Program.EndpointId">
|
371
|
+
<summary>
|
372
|
+
Gives an identifier for this endpoint
|
373
|
+
</summary>
|
374
|
+
</member>
|
375
|
+
<member name="T:NServiceBus.Host.Internal.HostServiceLocator">
|
376
|
+
<summary>
|
377
|
+
Plugs into the generic service locator to return an instance of <see cref="T:NServiceBus.Host.Internal.GenericHost" />.
|
378
|
+
</summary>
|
379
|
+
</member>
|
380
|
+
<member name="F:NServiceBus.Host.Internal.HostServiceLocator.Args">
|
381
|
+
<summary>
|
382
|
+
Command line arguments.
|
383
|
+
</summary>
|
384
|
+
</member>
|
385
|
+
<member name="M:NServiceBus.Host.Internal.HostServiceLocator.DoGetInstance(System.Type,System.String)">
|
386
|
+
<summary>
|
387
|
+
Returns an instance of <see cref="T:NServiceBus.Host.Internal.GenericHost" /></summary>
|
388
|
+
<param name="serviceType">
|
389
|
+
</param>
|
390
|
+
<param name="key">
|
391
|
+
</param>
|
392
|
+
<returns>
|
393
|
+
</returns>
|
394
|
+
</member>
|
395
|
+
<member name="M:NServiceBus.Host.Internal.HostServiceLocator.DoGetAllInstances(System.Type)">
|
396
|
+
<summary>
|
397
|
+
Not implemented.
|
398
|
+
</summary>
|
399
|
+
<param name="serviceType">
|
400
|
+
</param>
|
401
|
+
<returns>
|
402
|
+
</returns>
|
403
|
+
</member>
|
404
|
+
<member name="T:Microsoft.Practices.ServiceLocation.ActivationException">
|
405
|
+
<summary>
|
406
|
+
The standard exception thrown when a ServiceLocator has an error in resolving an object.
|
407
|
+
</summary>
|
408
|
+
</member>
|
409
|
+
<member name="M:Microsoft.Practices.ServiceLocation.ActivationException.#ctor">
|
410
|
+
<summary>
|
411
|
+
Initializes a new instance of the <see cref="T:System.Exception" /> class.
|
412
|
+
</summary>
|
413
|
+
</member>
|
414
|
+
<member name="M:Microsoft.Practices.ServiceLocation.ActivationException.#ctor(System.String)">
|
415
|
+
<summary>
|
416
|
+
Initializes a new instance of the <see cref="T:System.Exception" /> class with a specified error message.
|
417
|
+
</summary>
|
418
|
+
<param name="message">
|
419
|
+
The message that describes the error.
|
420
|
+
</param>
|
421
|
+
</member>
|
422
|
+
<member name="M:Microsoft.Practices.ServiceLocation.ActivationException.#ctor(System.String,System.Exception)">
|
423
|
+
<summary>
|
424
|
+
Initializes a new instance of the <see cref="T:System.Exception" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.
|
425
|
+
</summary>
|
426
|
+
<param name="message">
|
427
|
+
The error message that explains the reason for the exception.
|
428
|
+
</param>
|
429
|
+
<param name="innerException">
|
430
|
+
The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.
|
431
|
+
</param>
|
432
|
+
</member>
|
433
|
+
<member name="M:Microsoft.Practices.ServiceLocation.ActivationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
434
|
+
<summary>
|
435
|
+
Initializes a new instance of the <see cref="T:System.Exception" /> class with serialized data.
|
436
|
+
</summary>
|
437
|
+
<param name="info">
|
438
|
+
The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.
|
439
|
+
</param>
|
440
|
+
<param name="context">
|
441
|
+
The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.
|
442
|
+
</param>
|
443
|
+
<exception cref="T:System.ArgumentNullException">
|
444
|
+
The <paramref name="info" /> parameter is null.
|
445
|
+
</exception>
|
446
|
+
<exception cref="T:System.Runtime.Serialization.SerializationException">
|
447
|
+
The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0).
|
448
|
+
</exception>
|
449
|
+
</member>
|
450
|
+
<member name="T:Microsoft.Practices.ServiceLocation.IServiceLocator">
|
451
|
+
<summary>
|
452
|
+
The generic Service Locator interface. This interface is used
|
453
|
+
to retrieve services (instances identified by type and optional
|
454
|
+
name) from a container.
|
455
|
+
</summary>
|
456
|
+
</member>
|
457
|
+
<member name="M:Microsoft.Practices.ServiceLocation.IServiceLocator.GetInstance(System.Type)">
|
458
|
+
<summary>
|
459
|
+
Get an instance of the given <paramref name="serviceType" />.
|
460
|
+
</summary>
|
461
|
+
<param name="serviceType">Type of object requested.</param>
|
462
|
+
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is an error resolving
|
463
|
+
the service instance.</exception>
|
464
|
+
<returns>The requested service instance.</returns>
|
465
|
+
</member>
|
466
|
+
<member name="M:Microsoft.Practices.ServiceLocation.IServiceLocator.GetInstance(System.Type,System.String)">
|
467
|
+
<summary>
|
468
|
+
Get an instance of the given named <paramref name="serviceType" />.
|
469
|
+
</summary>
|
470
|
+
<param name="serviceType">Type of object requested.</param>
|
471
|
+
<param name="key">Name the object was registered with.</param>
|
472
|
+
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is an error resolving
|
473
|
+
the service instance.</exception>
|
474
|
+
<returns>The requested service instance.</returns>
|
475
|
+
</member>
|
476
|
+
<member name="M:Microsoft.Practices.ServiceLocation.IServiceLocator.GetAllInstances(System.Type)">
|
477
|
+
<summary>
|
478
|
+
Get all instances of the given <paramref name="serviceType" /> currently
|
479
|
+
registered in the container.
|
480
|
+
</summary>
|
481
|
+
<param name="serviceType">Type of object requested.</param>
|
482
|
+
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
483
|
+
the service instance.</exception>
|
484
|
+
<returns>A sequence of instances of the requested <paramref name="serviceType" />.</returns>
|
485
|
+
</member>
|
486
|
+
<member name="M:Microsoft.Practices.ServiceLocation.IServiceLocator.GetInstance``1">
|
487
|
+
<summary>
|
488
|
+
Get an instance of the given <typeparamref name="TService" />.
|
489
|
+
</summary>
|
490
|
+
<typeparam name="TService">Type of object requested.</typeparam>
|
491
|
+
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
492
|
+
the service instance.</exception>
|
493
|
+
<returns>The requested service instance.</returns>
|
494
|
+
</member>
|
495
|
+
<member name="M:Microsoft.Practices.ServiceLocation.IServiceLocator.GetInstance``1(System.String)">
|
496
|
+
<summary>
|
497
|
+
Get an instance of the given named <typeparamref name="TService" />.
|
498
|
+
</summary>
|
499
|
+
<typeparam name="TService">Type of object requested.</typeparam>
|
500
|
+
<param name="key">Name the object was registered with.</param>
|
501
|
+
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
502
|
+
the service instance.</exception>
|
503
|
+
<returns>The requested service instance.</returns>
|
504
|
+
</member>
|
505
|
+
<member name="M:Microsoft.Practices.ServiceLocation.IServiceLocator.GetAllInstances``1">
|
506
|
+
<summary>
|
507
|
+
Get all instances of the given <typeparamref name="TService" /> currently
|
508
|
+
registered in the container.
|
509
|
+
</summary>
|
510
|
+
<typeparam name="TService">Type of object requested.</typeparam>
|
511
|
+
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
512
|
+
the service instance.</exception>
|
513
|
+
<returns>A sequence of instances of the requested <typeparamref name="TService" />.</returns>
|
514
|
+
</member>
|
515
|
+
<member name="T:Microsoft.Practices.ServiceLocation.Properties.Resources">
|
516
|
+
<summary>
|
517
|
+
A strongly-typed resource class, for looking up localized strings, etc.
|
518
|
+
</summary>
|
519
|
+
</member>
|
520
|
+
<member name="P:Microsoft.Practices.ServiceLocation.Properties.Resources.ResourceManager">
|
521
|
+
<summary>
|
522
|
+
Returns the cached ResourceManager instance used by this class.
|
523
|
+
</summary>
|
524
|
+
</member>
|
525
|
+
<member name="P:Microsoft.Practices.ServiceLocation.Properties.Resources.Culture">
|
526
|
+
<summary>
|
527
|
+
Overrides the current thread's CurrentUICulture property for all
|
528
|
+
resource lookups using this strongly typed resource class.
|
529
|
+
</summary>
|
530
|
+
</member>
|
531
|
+
<member name="P:Microsoft.Practices.ServiceLocation.Properties.Resources.ActivateAllExceptionMessage">
|
532
|
+
<summary>
|
533
|
+
Looks up a localized string similar to Activation error occured while trying to get all instances of type {0}.
|
534
|
+
</summary>
|
535
|
+
</member>
|
536
|
+
<member name="P:Microsoft.Practices.ServiceLocation.Properties.Resources.ActivationExceptionMessage">
|
537
|
+
<summary>
|
538
|
+
Looks up a localized string similar to Activation error occured while trying to get instance of type {0}, key "{1}".
|
539
|
+
</summary>
|
540
|
+
</member>
|
541
|
+
<member name="T:Microsoft.Practices.ServiceLocation.ServiceLocator">
|
542
|
+
<summary>
|
543
|
+
This class provides the ambient container for this application. If your
|
544
|
+
framework defines such an ambient container, use ServiceLocator.Current
|
545
|
+
to get it.
|
546
|
+
</summary>
|
547
|
+
</member>
|
548
|
+
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocator.SetLocatorProvider(Microsoft.Practices.ServiceLocation.ServiceLocatorProvider)">
|
549
|
+
<summary>
|
550
|
+
Set the delegate that is used to retrieve the current container.
|
551
|
+
</summary>
|
552
|
+
<param name="newProvider">Delegate that, when called, will return
|
553
|
+
the current ambient container.</param>
|
554
|
+
</member>
|
555
|
+
<member name="P:Microsoft.Practices.ServiceLocation.ServiceLocator.Current">
|
556
|
+
<summary>
|
557
|
+
The current ambient container.
|
558
|
+
</summary>
|
559
|
+
</member>
|
560
|
+
<member name="T:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase">
|
561
|
+
<summary>
|
562
|
+
This class is a helper that provides a default implementation
|
563
|
+
for most of the methods of <see cref="T:Microsoft.Practices.ServiceLocation.IServiceLocator" />.
|
564
|
+
</summary>
|
565
|
+
</member>
|
566
|
+
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetService(System.Type)">
|
567
|
+
<summary>
|
568
|
+
Implementation of <see cref="M:System.IServiceProvider.GetService(System.Type)" />.
|
569
|
+
</summary>
|
570
|
+
<param name="serviceType">The requested service.</param>
|
571
|
+
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is an error in resolving the service instance.</exception>
|
572
|
+
<returns>The requested object.</returns>
|
573
|
+
</member>
|
574
|
+
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetInstance(System.Type)">
|
575
|
+
<summary>
|
576
|
+
Get an instance of the given <paramref name="serviceType" />.
|
577
|
+
</summary>
|
578
|
+
<param name="serviceType">Type of object requested.</param>
|
579
|
+
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is an error resolving
|
580
|
+
the service instance.</exception>
|
581
|
+
<returns>The requested service instance.</returns>
|
582
|
+
</member>
|
583
|
+
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetInstance(System.Type,System.String)">
|
584
|
+
<summary>
|
585
|
+
Get an instance of the given named <paramref name="serviceType" />.
|
586
|
+
</summary>
|
587
|
+
<param name="serviceType">Type of object requested.</param>
|
588
|
+
<param name="key">Name the object was registered with.</param>
|
589
|
+
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is an error resolving
|
590
|
+
the service instance.</exception>
|
591
|
+
<returns>The requested service instance.</returns>
|
592
|
+
</member>
|
593
|
+
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetAllInstances(System.Type)">
|
594
|
+
<summary>
|
595
|
+
Get all instances of the given <paramref name="serviceType" /> currently
|
596
|
+
registered in the container.
|
597
|
+
</summary>
|
598
|
+
<param name="serviceType">Type of object requested.</param>
|
599
|
+
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
600
|
+
the service instance.</exception>
|
601
|
+
<returns>A sequence of instances of the requested <paramref name="serviceType" />.</returns>
|
602
|
+
</member>
|
603
|
+
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetInstance``1">
|
604
|
+
<summary>
|
605
|
+
Get an instance of the given <typeparamref name="TService" />.
|
606
|
+
</summary>
|
607
|
+
<typeparam name="TService">Type of object requested.</typeparam>
|
608
|
+
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
609
|
+
the service instance.</exception>
|
610
|
+
<returns>The requested service instance.</returns>
|
611
|
+
</member>
|
612
|
+
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetInstance``1(System.String)">
|
613
|
+
<summary>
|
614
|
+
Get an instance of the given named <typeparamref name="TService" />.
|
615
|
+
</summary>
|
616
|
+
<typeparam name="TService">Type of object requested.</typeparam>
|
617
|
+
<param name="key">Name the object was registered with.</param>
|
618
|
+
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
619
|
+
the service instance.</exception>
|
620
|
+
<returns>The requested service instance.</returns>
|
621
|
+
</member>
|
622
|
+
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetAllInstances``1">
|
623
|
+
<summary>
|
624
|
+
Get all instances of the given <typeparamref name="TService" /> currently
|
625
|
+
registered in the container.
|
626
|
+
</summary>
|
627
|
+
<typeparam name="TService">Type of object requested.</typeparam>
|
628
|
+
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
629
|
+
the service instance.</exception>
|
630
|
+
<returns>A sequence of instances of the requested <typeparamref name="TService" />.</returns>
|
631
|
+
</member>
|
632
|
+
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.DoGetInstance(System.Type,System.String)">
|
633
|
+
<summary>
|
634
|
+
When implemented by inheriting classes, this method will do the actual work of resolving
|
635
|
+
the requested service instance.
|
636
|
+
</summary>
|
637
|
+
<param name="serviceType">Type of instance requested.</param>
|
638
|
+
<param name="key">Name of registered service you want. May be null.</param>
|
639
|
+
<returns>The requested service instance.</returns>
|
640
|
+
</member>
|
641
|
+
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.DoGetAllInstances(System.Type)">
|
642
|
+
<summary>
|
643
|
+
When implemented by inheriting classes, this method will do the actual work of
|
644
|
+
resolving all the requested service instances.
|
645
|
+
</summary>
|
646
|
+
<param name="serviceType">Type of service requested.</param>
|
647
|
+
<returns>Sequence of service instance objects.</returns>
|
648
|
+
</member>
|
649
|
+
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.FormatActivationExceptionMessage(System.Exception,System.Type,System.String)">
|
650
|
+
<summary>
|
651
|
+
Format the exception message for use in an <see cref="T:Microsoft.Practices.ServiceLocation.ActivationException" />
|
652
|
+
that occurs while resolving a single service.
|
653
|
+
</summary>
|
654
|
+
<param name="actualException">The actual exception thrown by the implementation.</param>
|
655
|
+
<param name="serviceType">Type of service requested.</param>
|
656
|
+
<param name="key">Name requested.</param>
|
657
|
+
<returns>The formatted exception message string.</returns>
|
658
|
+
</member>
|
659
|
+
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.FormatActivateAllExceptionMessage(System.Exception,System.Type)">
|
660
|
+
<summary>
|
661
|
+
Format the exception message for use in an <see cref="T:Microsoft.Practices.ServiceLocation.ActivationException" />
|
662
|
+
that occurs while resolving multiple service instances.
|
663
|
+
</summary>
|
664
|
+
<param name="actualException">The actual exception thrown by the implementation.</param>
|
665
|
+
<param name="serviceType">Type of service requested.</param>
|
666
|
+
<returns>The formatted exception message string.</returns>
|
667
|
+
</member>
|
668
|
+
<member name="T:Microsoft.Practices.ServiceLocation.ServiceLocatorProvider">
|
669
|
+
<summary>
|
670
|
+
This delegate type is used to provide a method that will
|
671
|
+
return the current container. Used with the <see cref="T:Microsoft.Practices.ServiceLocation.ServiceLocator" />
|
672
|
+
static accessor class.
|
673
|
+
</summary>
|
674
|
+
<returns>An <see cref="T:Microsoft.Practices.ServiceLocation.IServiceLocator" />.</returns>
|
675
|
+
</member>
|
676
|
+
</members>
|
677
|
+
</doc>
|