forked from ServiceStack/ServiceStack.Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceStack.xml
More file actions
3518 lines (3506 loc) · 196 KB
/
ServiceStack.xml
File metadata and controls
3518 lines (3506 loc) · 196 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>ServiceStack</name>
</assembly>
<members>
<member name="M:ServiceStack.CacheAccess.Providers.CacheClientExtensions.RemoveByPattern(ServiceStack.CacheAccess.ICacheClient,System.String)">
<summary>
Removes items from cache that have keys matching the specified wildcard pattern
</summary>
<param name="cacheClient">Cache client</param>
<param name="pattern">The wildcard, where "*" means any sequence of characters and "?" means any single character.</param>
</member>
<member name="M:ServiceStack.CacheAccess.Providers.CacheClientExtensions.RemoveByRegex(ServiceStack.CacheAccess.ICacheClient,System.String)">
<summary>
Removes items from the cache based on the specified regular expression pattern
</summary>
<param name="cacheClient">Cache client</param>
<param name="regex">Regular expression pattern to search cache keys</param>
</member>
<member name="T:ServiceStack.CacheAccess.Providers.FileAndCacheTextManager">
<summary>
Stores both 'compressed' and 'text' caches of the dto in the FileSystem and ICacheTextManager provided.
The ContentType is inferred from the ICacheTextManager's ContentType.
</summary>
</member>
<member name="T:ServiceStack.CacheAccess.Providers.FileSystemXmlCacheClient">
<summary>
Implements a very limited subset of ICacheClient, i.e.
- T Get[T]()
- Set(path, value)
- Remove(path)
</summary>
</member>
<member name="M:ServiceStack.CacheAccess.Providers.MemoryCacheClient.CacheAdd(System.String,System.Object)">
<summary>
Add value with specified key to the cache, and set the cache entry to never expire.
</summary>
<param name="key">Key associated with value.</param>
<param name="value">Value being cached.</param>
<returns></returns>
</member>
<member name="M:ServiceStack.CacheAccess.Providers.MemoryCacheClient.CacheAdd(System.String,System.Object,System.DateTime)">
<summary>
Stores The value with key only if such key doesn't exist at the server yet.
</summary>
<param name="key">The key.</param>
<param name="value">The value.</param>
<param name="expiresAt">The UTC DateTime at which the cache entry expires.</param>
<returns></returns>
</member>
<member name="M:ServiceStack.CacheAccess.Providers.MemoryCacheClient.CacheSet(System.String,System.Object)">
<summary>
Adds or replaces the value with key, and sets the cache entry to never expire.
</summary>
<param name="key">The key.</param>
<param name="value">The value.</param>
<returns></returns>
</member>
<member name="M:ServiceStack.CacheAccess.Providers.MemoryCacheClient.CacheSet(System.String,System.Object,System.DateTime)">
<summary>
Adds or replaces the value with key.
</summary>
<param name="key">The key.</param>
<param name="value">The value.</param>
<param name="expiresAt">The UTC DateTime at which the cache entry expires.</param>
<returns></returns>
</member>
<member name="M:ServiceStack.CacheAccess.Providers.MemoryCacheClient.CacheSet(System.String,System.Object,System.DateTime,System.Nullable{System.Int64})">
<summary>
Adds or replaces the value with key.
</summary>
<param name="key">The key.</param>
<param name="value">The value.</param>
<param name="expiresAt">The UTC DateTime at which the cache entry expires.</param>
<param name="checkLastModified">The check last modified.</param>
<returns>True; if it succeeded</returns>
</member>
<member name="M:ServiceStack.CacheAccess.Providers.MemoryCacheClient.CacheReplace(System.String,System.Object)">
<summary>
Replace the value with specified key if it exists, and set the cache entry to never expire.
</summary>
<param name="key">The key of the cache entry.</param>
<param name="value">The value to be cached.</param>
<returns></returns>
</member>
<member name="M:ServiceStack.CacheAccess.Providers.MemoryCacheClient.CacheReplace(System.String,System.Object,System.DateTime)">
<summary>
Replace the value with specified key if it exists.
</summary>
<param name="key">The key of the cache entry.</param>
<param name="value">The value to be cached.</param>
<param name="expiresAt">The UTC DateTime at which the cache entry expires.</param>
<returns></returns>
</member>
<member name="M:ServiceStack.CacheAccess.Providers.MemoryCacheClient.Add``1(System.String,``0)">
<summary>
Add the value with key to the cache, set to never expire.
</summary>
<param name="key">The key of the cache entry.</param>
<param name="value">The value being cached.</param>
<returns>True if Add succeeds, otherwise false.</returns>
</member>
<member name="M:ServiceStack.CacheAccess.Providers.MemoryCacheClient.Set``1(System.String,``0)">
<summary>
Add or replace the value with key to the cache, set to never expire.
</summary>
<param name="key">The key of the cache entry.</param>
<param name="value">The value being cached.</param>
<returns>True if Set succeeds, otherwise false.</returns>
</member>
<member name="M:ServiceStack.CacheAccess.Providers.MemoryCacheClient.Replace``1(System.String,``0)">
<summary>
Replace the value with key in the cache, set to never expire.
</summary>
<param name="key">The key of the cache entry.</param>
<param name="value">The value being cached.</param>
<returns>True if Replace succeeds, otherwise false.</returns>
</member>
<member name="M:ServiceStack.CacheAccess.Providers.MemoryCacheClient.Add``1(System.String,``0,System.DateTime)">
<summary>
Add the value with key to the cache, set to expire at specified DateTime.
</summary>
<remarks>This method examines the DateTimeKind of expiresAt to determine if conversion to
universal time is needed. The version of Add that takes a TimeSpan expiration is faster
than using this method with a DateTime of Kind other than Utc, and is not affected by
ambiguous local time during daylight savings/standard time transition.</remarks>
<param name="key">The key of the cache entry.</param>
<param name="value">The value being cached.</param>
<param name="expiresAt">The DateTime at which the cache entry expires.</param>
<returns>True if Add succeeds, otherwise false.</returns>
</member>
<member name="M:ServiceStack.CacheAccess.Providers.MemoryCacheClient.Set``1(System.String,``0,System.DateTime)">
<summary>
Add or replace the value with key to the cache, set to expire at specified DateTime.
</summary>
<remarks>This method examines the DateTimeKind of expiresAt to determine if conversion to
universal time is needed. The version of Set that takes a TimeSpan expiration is faster
than using this method with a DateTime of Kind other than Utc, and is not affected by
ambiguous local time during daylight savings/standard time transition.</remarks>
<param name="key">The key of the cache entry.</param>
<param name="value">The value being cached.</param>
<param name="expiresAt">The DateTime at which the cache entry expires.</param>
<returns>True if Set succeeds, otherwise false.</returns>
</member>
<member name="M:ServiceStack.CacheAccess.Providers.MemoryCacheClient.Replace``1(System.String,``0,System.DateTime)">
<summary>
Replace the value with key in the cache, set to expire at specified DateTime.
</summary>
<remarks>This method examines the DateTimeKind of expiresAt to determine if conversion to
universal time is needed. The version of Replace that takes a TimeSpan expiration is faster
than using this method with a DateTime of Kind other than Utc, and is not affected by
ambiguous local time during daylight savings/standard time transition.</remarks>
<param name="key">The key of the cache entry.</param>
<param name="value">The value being cached.</param>
<param name="expiresAt">The DateTime at which the cache entry expires.</param>
<returns>True if Replace succeeds, otherwise false.</returns>
</member>
<member name="M:ServiceStack.CacheAccess.Providers.MemoryCacheClient.Add``1(System.String,``0,System.TimeSpan)">
<summary>
Add the value with key to the cache, set to expire after specified TimeSpan.
</summary>
<param name="key">The key of the cache entry.</param>
<param name="value">The value being cached.</param>
<param name="expiresIn">The TimeSpan at which the cache entry expires.</param>
<returns>True if Add succeeds, otherwise false.</returns>
</member>
<member name="M:ServiceStack.CacheAccess.Providers.MemoryCacheClient.Set``1(System.String,``0,System.TimeSpan)">
<summary>
Add or replace the value with key to the cache, set to expire after specified TimeSpan.
</summary>
<param name="key">The key of the cache entry.</param>
<param name="value">The value being cached.</param>
<param name="expiresIn">The TimeSpan at which the cache entry expires.</param>
<returns>True if Set succeeds, otherwise false.</returns>
</member>
<member name="M:ServiceStack.CacheAccess.Providers.MemoryCacheClient.Replace``1(System.String,``0,System.TimeSpan)">
<summary>
Replace the value with key in the cache, set to expire after specified TimeSpan.
</summary>
<param name="key">The key of the cache entry.</param>
<param name="value">The value being cached.</param>
<param name="expiresIn">The TimeSpan at which the cache entry expires.</param>
<returns>True if Replace succeeds, otherwise false.</returns>
</member>
<member name="M:ServiceStack.CacheAccess.Providers.MemoryCacheClient.CacheEntry.#ctor(System.Object,System.DateTime)">
<summary>
Create new instance of CacheEntry.
</summary>
<param name="value">The value being cached.</param>
<param name="expiresAt">The UTC time at which CacheEntry expires.</param>
</member>
<member name="P:ServiceStack.CacheAccess.Providers.MemoryCacheClient.CacheEntry.ExpiresAt">
<summary>UTC time at which CacheEntry expires.</summary>
</member>
<member name="T:ServiceStack.Configuration.AppSettings">
<summary>
More familiar name for the new crowd.
</summary>
</member>
<member name="M:ServiceStack.Configuration.AppSettings.GetString(System.String)">
<summary>
Returns string if exists, otherwise null
</summary>
<param name="name"></param>
<returns></returns>
</member>
<member name="M:ServiceStack.Configuration.ISettings.Get(System.String)">
<summary>
Provides a common interface for Settings providers such as
ConfigurationManager or Azure's RoleEnvironment. The only
requirement is that if the implementation cannot find the
specified key, the return value must be null
</summary>
<param name="key">The key for the setting</param>
<returns>The string value of the specified key, or null if the key
was invalid</returns>
</member>
<member name="M:ServiceStack.Configuration.ConfigUtils.GetNullableAppSetting(System.String)">
<summary>
Gets the nullable app setting.
</summary>
<param name="key">The key.</param>
<returns></returns>
</member>
<member name="M:ServiceStack.Configuration.ConfigUtils.GetAppSetting(System.String)">
<summary>
Gets the app setting.
</summary>
<param name="key">The key.</param>
<returns></returns>
</member>
<member name="M:ServiceStack.Configuration.ConfigUtils.ConfigSectionExists(System.String)">
<summary>
Determines wheter the Config section identified by the sectionName exists.
</summary>
<param name="sectionName">Name of the section.</param>
<returns></returns>
</member>
<member name="M:ServiceStack.Configuration.ConfigUtils.GetAppSetting(System.String,System.String)">
<summary>
Returns AppSetting[key] if exists otherwise defaultValue
</summary>
<param name="key">The key.</param>
<param name="defaultValue">The default value.</param>
<returns></returns>
</member>
<member name="M:ServiceStack.Configuration.ConfigUtils.GetAppSetting``1(System.String,``0)">
<summary>
Returns AppSetting[key] if exists otherwise defaultValue, for non-string values
</summary>
<typeparam name="T"></typeparam>
<param name="key">The key.</param>
<param name="defaultValue">The default value.</param>
<returns></returns>
</member>
<member name="M:ServiceStack.Configuration.ConfigUtils.GetConnectionStringSetting(System.String)">
<summary>
Gets the connection string setting.
</summary>
<param name="key">The key.</param>
<returns></returns>
</member>
<member name="M:ServiceStack.Configuration.ConfigUtils.GetConnectionString(System.String)">
<summary>
Gets the connection string.
</summary>
<param name="key">The key.</param>
<returns></returns>
</member>
<member name="M:ServiceStack.Configuration.ConfigUtils.GetListFromAppSetting(System.String)">
<summary>
Gets the list from app setting.
</summary>
<param name="key">The key.</param>
<returns></returns>
</member>
<member name="M:ServiceStack.Configuration.ConfigUtils.GetDictionaryFromAppSetting(System.String)">
<summary>
Gets the dictionary from app setting.
</summary>
<param name="key">The key.</param>
<returns></returns>
</member>
<member name="M:ServiceStack.Configuration.ConfigUtils.GetParseMethod(System.Type)">
<summary>
Get the static Parse(string) method on the type supplied
</summary>
<param name="type"></param>
<returns>A delegate to the type's Parse(string) if it has one</returns>
</member>
<member name="M:ServiceStack.Configuration.ConfigUtils.GetConstructorInfo(System.Type)">
<summary>
Gets the constructor info for T(string) if exists.
</summary>
<param name="type">The type.</param>
<returns></returns>
</member>
<member name="M:ServiceStack.Configuration.ConfigUtils.ParseTextValue``1(System.String)">
<summary>
Returns the value returned by the 'T.Parse(string)' method if exists otherwise 'new T(string)'.
e.g. if T was a TimeSpan it will return TimeSpan.Parse(textValue).
If there is no Parse Method it will attempt to create a new instance of the destined type
</summary>
<typeparam name="T"></typeparam>
<param name="textValue">The default value.</param>
<returns>T.Parse(string) or new T(string) value</returns>
</member>
<member name="T:Funq.Container">
<summary>
Main container class for components, supporting container hierarchies and
lifetime management of <see cref="T:System.IDisposable"/> instances.
</summary>
</member>
<member name="M:Funq.Container.#ctor">
<summary>
Initializes a new empty container.
</summary>
</member>
<member name="M:Funq.Container.CreateChildContainer">
<summary>
Creates a child container of the current one, which exposes its
current service registration to the new child container.
</summary>
</member>
<member name="M:Funq.Container.Dispose">
<summary>
Disposes the container and all instances owned by it (see
<see cref="F:Funq.Owner.Container"/>), as well as all child containers
created through <see cref="M:Funq.Container.CreateChildContainer"/>.
</summary>
</member>
<member name="M:Funq.Container.Register``1(``0)">
<summary>
Registers a service instance with the container. This instance
will have <see cref="F:Funq.Owner.External"/> and <see cref="F:Funq.ReuseScope.Hierarchy"/>
behavior.
</summary><param name="instance">Service instance to use.</param>
</member>
<member name="M:Funq.Container.Register``1(System.String,``0)">
<summary>
Registers a named service instance with the container. This instance
will have <see cref="F:Funq.Owner.External"/> and <see cref="F:Funq.ReuseScope.Hierarchy"/>
behavior.
</summary><param name="name">Name of the service to register.</param><param name="instance">Service instance to use.</param>
</member>
<member name="M:Funq.Container.LazyResolve``1">
<summary>
Retrieves a function that can be used to lazily resolve an instance
of the service when needed.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><returns>The function that can resolve to the service instance when invoked.</returns><exception cref="T:Funq.ResolutionException">The requested service has not been registered previously.</exception>
</member>
<member name="M:Funq.Container.LazyResolve``2">
<!-- No matching elements were found for the following include tag --><include file="Container.xdoc" path="docs/doc[@for="Container.LazyResolve{TService,TArgs}"]/*"/>
</member>
<member name="M:Funq.Container.LazyResolve``3">
<!-- No matching elements were found for the following include tag --><include file="Container.xdoc" path="docs/doc[@for="Container.LazyResolve{TService,TArgs}"]/*"/>
</member>
<member name="M:Funq.Container.LazyResolve``4">
<!-- No matching elements were found for the following include tag --><include file="Container.xdoc" path="docs/doc[@for="Container.LazyResolve{TService,TArgs}"]/*"/>
</member>
<member name="M:Funq.Container.LazyResolve``5">
<!-- No matching elements were found for the following include tag --><include file="Container.xdoc" path="docs/doc[@for="Container.LazyResolve{TService,TArgs}"]/*"/>
</member>
<member name="M:Funq.Container.LazyResolve``6">
<!-- No matching elements were found for the following include tag --><include file="Container.xdoc" path="docs/doc[@for="Container.LazyResolve{TService,TArgs}"]/*"/>
</member>
<member name="M:Funq.Container.LazyResolve``7">
<!-- No matching elements were found for the following include tag --><include file="Container.xdoc" path="docs/doc[@for="Container.LazyResolve{TService,TArgs}"]/*"/>
</member>
<member name="M:Funq.Container.LazyResolve``1(System.String)">
<summary>
Retrieves a function that can be used to lazily resolve an instance
of the service with the given name when needed.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><param name="name">Name of the service to retrieve.</param><returns>The function that can resolve to the service instance with the given name when invoked.</returns><exception cref="T:Funq.ResolutionException">The requested service with the given name has not been registered previously.</exception>
</member>
<member name="M:Funq.Container.LazyResolve``2(System.String)">
<summary>
Retrieves a function that can be used to lazily resolve an instance
of the service of the given type, name and service constructor arguments when needed.
</summary><param name="name">Name of the service to retrieve.</param><returns>The function that can resolve to the service instance with the given and service constructor arguments name when invoked.</returns><exception cref="T:Funq.ResolutionException">The requested service with the given name and constructor arguments has not been registered previously.</exception>
</member>
<member name="M:Funq.Container.LazyResolve``3(System.String)">
<summary>
Retrieves a function that can be used to lazily resolve an instance
of the service of the given type, name and service constructor arguments when needed.
</summary><param name="name">Name of the service to retrieve.</param><returns>The function that can resolve to the service instance with the given and service constructor arguments name when invoked.</returns><exception cref="T:Funq.ResolutionException">The requested service with the given name and constructor arguments has not been registered previously.</exception>
</member>
<member name="M:Funq.Container.LazyResolve``4(System.String)">
<summary>
Retrieves a function that can be used to lazily resolve an instance
of the service of the given type, name and service constructor arguments when needed.
</summary><param name="name">Name of the service to retrieve.</param><returns>The function that can resolve to the service instance with the given and service constructor arguments name when invoked.</returns><exception cref="T:Funq.ResolutionException">The requested service with the given name and constructor arguments has not been registered previously.</exception>
</member>
<member name="M:Funq.Container.LazyResolve``5(System.String)">
<summary>
Retrieves a function that can be used to lazily resolve an instance
of the service of the given type, name and service constructor arguments when needed.
</summary><param name="name">Name of the service to retrieve.</param><returns>The function that can resolve to the service instance with the given and service constructor arguments name when invoked.</returns><exception cref="T:Funq.ResolutionException">The requested service with the given name and constructor arguments has not been registered previously.</exception>
</member>
<member name="M:Funq.Container.LazyResolve``6(System.String)">
<summary>
Retrieves a function that can be used to lazily resolve an instance
of the service of the given type, name and service constructor arguments when needed.
</summary><param name="name">Name of the service to retrieve.</param><returns>The function that can resolve to the service instance with the given and service constructor arguments name when invoked.</returns><exception cref="T:Funq.ResolutionException">The requested service with the given name and constructor arguments has not been registered previously.</exception>
</member>
<member name="M:Funq.Container.LazyResolve``7(System.String)">
<summary>
Retrieves a function that can be used to lazily resolve an instance
of the service of the given type, name and service constructor arguments when needed.
</summary><param name="name">Name of the service to retrieve.</param><returns>The function that can resolve to the service instance with the given and service constructor arguments name when invoked.</returns><exception cref="T:Funq.ResolutionException">The requested service with the given name and constructor arguments has not been registered previously.</exception>
</member>
<member name="M:Funq.Container.Register``1(System.Func{Funq.Container,``0})">
<summary>
Registers the given service by providing a factory delegate to
instantiate it.
</summary><typeparam name="TService">The service type to register.</typeparam><param name="factory">The factory delegate to initialize new instances of the service when needed.</param><returns>The registration object to perform further configuration via its fluent interface.</returns>
</member>
<member name="M:Funq.Container.Register``2(System.Func{Funq.Container,``1,``0})">
<summary>
Registers the given service by providing a factory delegate that receives arguments to
instantiate it.
</summary><typeparam name="TService">The service type to register.</typeparam><typeparam name="TArg">First argument that should be passed to the factory delegate to create the instace.</typeparam><param name="factory">The factory delegate to initialize new instances of the service when needed.</param><returns>The registration object to perform further configuration via its fluent interface.</returns>
</member>
<member name="M:Funq.Container.Register``3(System.Func{Funq.Container,``1,``2,``0})">
<summary>
Registers the given service by providing a factory delegate that receives arguments to
instantiate it.
</summary><typeparam name="TService">The service type to register.</typeparam><typeparam name="TArg1">First argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg2">Second argument that should be passed to the factory delegate to create the instace.</typeparam><param name="factory">The factory delegate to initialize new instances of the service when needed.</param><returns>The registration object to perform further configuration via its fluent interface.</returns>
</member>
<member name="M:Funq.Container.Register``4(System.Func{Funq.Container,``1,``2,``3,``0})">
<summary>
Registers the given service by providing a factory delegate that receives arguments to
instantiate it.
</summary><typeparam name="TService">The service type to register.</typeparam><typeparam name="TArg1">First argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg2">Second argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg3">Third argument that should be passed to the factory delegate to create the instace.</typeparam><param name="factory">The factory delegate to initialize new instances of the service when needed.</param><returns>The registration object to perform further configuration via its fluent interface.</returns>
</member>
<member name="M:Funq.Container.Register``5(Funq.Func{Funq.Container,``1,``2,``3,``4,``0})">
<summary>
Registers the given service by providing a factory delegate that receives arguments to
instantiate it.
</summary><typeparam name="TService">The service type to register.</typeparam><typeparam name="TArg1">First argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg2">Second argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg3">Third argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg4">Fourth argument that should be passed to the factory delegate to create the instace.</typeparam><param name="factory">The factory delegate to initialize new instances of the service when needed.</param><returns>The registration object to perform further configuration via its fluent interface.</returns>
</member>
<member name="M:Funq.Container.Register``6(Funq.Func{Funq.Container,``1,``2,``3,``4,``5,``0})">
<summary>
Registers the given service by providing a factory delegate that receives arguments to
instantiate it.
</summary><typeparam name="TService">The service type to register.</typeparam><typeparam name="TArg1">First argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg2">Second argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg3">Third argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg4">Fourth argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg5">Fifth argument that should be passed to the factory delegate to create the instace.</typeparam><param name="factory">The factory delegate to initialize new instances of the service when needed.</param><returns>The registration object to perform further configuration via its fluent interface.</returns>
</member>
<member name="M:Funq.Container.Register``7(Funq.Func{Funq.Container,``1,``2,``3,``4,``5,``6,``0})">
<summary>
Registers the given service by providing a factory delegate that receives arguments to
instantiate it.
</summary><typeparam name="TService">The service type to register.</typeparam><typeparam name="TArg1">First argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg2">Second argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg3">Third argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg4">Fourth argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg5">Fifth argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg6">Sixth argument that should be passed to the factory delegate to create the instace.</typeparam><param name="factory">The factory delegate to initialize new instances of the service when needed.</param><returns>The registration object to perform further configuration via its fluent interface.</returns>
</member>
<member name="M:Funq.Container.Register``1(System.String,System.Func{Funq.Container,``0})">
<summary>
Registers the given named service by providing a factory delegate to
instantiate it.
</summary><typeparam name="TService">The service type to register.</typeparam><param name="name">A name used to differenciate this service registration.</param><param name="factory">The factory delegate to initialize new instances of the service when needed.</param><returns>The registration object to perform further configuration via its fluent interface.</returns>
</member>
<member name="M:Funq.Container.Register``2(System.String,System.Func{Funq.Container,``1,``0})">
<summary>
Registers the given named service by providing a factory delegate that receives arguments to
instantiate it.
</summary><typeparam name="TService">The service type to register.</typeparam><typeparam name="TArg">First argument that should be passed to the factory delegate to create the instace.</typeparam><param name="name">A name used to differenciate this service registration.</param><param name="factory">The factory delegate to initialize new instances of the service when needed.</param><returns>The registration object to perform further configuration via its fluent interface.</returns>
</member>
<member name="M:Funq.Container.Register``3(System.String,System.Func{Funq.Container,``1,``2,``0})">
<summary>
Registers the given named service by providing a factory delegate that receives arguments to
instantiate it.
</summary><typeparam name="TService">The service type to register.</typeparam><typeparam name="TArg1">First argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg2">Second argument that should be passed to the factory delegate to create the instace.</typeparam><param name="name">A name used to differenciate this service registration.</param><param name="factory">The factory delegate to initialize new instances of the service when needed.</param><returns>The registration object to perform further configuration via its fluent interface.</returns>
</member>
<member name="M:Funq.Container.Register``4(System.String,System.Func{Funq.Container,``1,``2,``3,``0})">
<summary>
Registers the given named service by providing a factory delegate that receives arguments to
instantiate it.
</summary><typeparam name="TService">The service type to register.</typeparam><typeparam name="TArg1">First argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg2">Second argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg3">Third argument that should be passed to the factory delegate to create the instace.</typeparam><param name="name">A name used to differenciate this service registration.</param><param name="factory">The factory delegate to initialize new instances of the service when needed.</param><returns>The registration object to perform further configuration via its fluent interface.</returns>
</member>
<member name="M:Funq.Container.Register``5(System.String,Funq.Func{Funq.Container,``1,``2,``3,``4,``0})">
<summary>
Registers the given named service by providing a factory delegate that receives arguments to
instantiate it.
</summary><typeparam name="TService">The service type to register.</typeparam><typeparam name="TArg1">First argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg2">Second argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg3">Third argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg4">Fourth argument that should be passed to the factory delegate to create the instace.</typeparam><param name="name">A name used to differenciate this service registration.</param><param name="factory">The factory delegate to initialize new instances of the service when needed.</param><returns>The registration object to perform further configuration via its fluent interface.</returns>
</member>
<member name="M:Funq.Container.Register``6(System.String,Funq.Func{Funq.Container,``1,``2,``3,``4,``5,``0})">
<summary>
Registers the given named service by providing a factory delegate that receives arguments to
instantiate it.
</summary><typeparam name="TService">The service type to register.</typeparam><typeparam name="TArg1">First argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg2">Second argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg3">Third argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg4">Fourth argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg5">Fifth argument that should be passed to the factory delegate to create the instace.</typeparam><param name="name">A name used to differenciate this service registration.</param><param name="factory">The factory delegate to initialize new instances of the service when needed.</param><returns>The registration object to perform further configuration via its fluent interface.</returns>
</member>
<member name="M:Funq.Container.Register``7(System.String,Funq.Func{Funq.Container,``1,``2,``3,``4,``5,``6,``0})">
<summary>
Registers the given named service by providing a factory delegate that receives arguments to
instantiate it.
</summary><typeparam name="TService">The service type to register.</typeparam><typeparam name="TArg1">First argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg2">Second argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg3">Third argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg4">Fourth argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg5">Fifth argument that should be passed to the factory delegate to create the instace.</typeparam><typeparam name="TArg6">Sixth argument that should be passed to the factory delegate to create the instace.</typeparam><param name="name">A name used to differenciate this service registration.</param><param name="factory">The factory delegate to initialize new instances of the service when needed.</param><returns>The registration object to perform further configuration via its fluent interface.</returns>
</member>
<member name="M:Funq.Container.Resolve``1">
<summary>
Resolves the given service by type, without passing any arguments for
its construction.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><returns>The resolved service instance.</returns><exception cref="T:Funq.ResolutionException">The given service could not be resolved.</exception>
</member>
<member name="M:Funq.Container.Resolve``2(``1)">
<summary>
Resolves the given service by type, passing the given arguments
for its initialization.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><typeparam name="TArg">First argument to pass to the factory delegate that may create the instace.</typeparam><returns>The resolved service instance.</returns><exception cref="T:Funq.ResolutionException">The given service could not be resolved.</exception>
</member>
<member name="M:Funq.Container.Resolve``3(``1,``2)">
<summary>
Resolves the given service by type, passing the given arguments
for its initialization.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><typeparam name="TArg1">First argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg2">Second argument to pass to the factory delegate that may create the instace.</typeparam><returns>The resolved service instance.</returns><exception cref="T:Funq.ResolutionException">The given service could not be resolved.</exception>
</member>
<member name="M:Funq.Container.Resolve``4(``1,``2,``3)">
<summary>
Resolves the given service by type, passing the given arguments
for its initialization.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><typeparam name="TArg1">First argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg2">Second argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg3">Third argument to pass to the factory delegate that may create the instace.</typeparam><returns>The resolved service instance.</returns><exception cref="T:Funq.ResolutionException">The given service could not be resolved.</exception>
</member>
<member name="M:Funq.Container.Resolve``5(``1,``2,``3,``4)">
<summary>
Resolves the given service by type, passing the given arguments
for its initialization.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><typeparam name="TArg1">First argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg2">Second argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg3">Third argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg4">Fourth argument to pass to the factory delegate that may create the instace.</typeparam><returns>The resolved service instance.</returns><exception cref="T:Funq.ResolutionException">The given service could not be resolved.</exception>
</member>
<member name="M:Funq.Container.Resolve``6(``1,``2,``3,``4,``5)">
<summary>
Resolves the given service by type, passing the given arguments
for its initialization.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><typeparam name="TArg1">First argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg2">Second argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg3">Third argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg4">Fourth argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg5">Fifth argument to pass to the factory delegate that may create the instace.</typeparam><returns>The resolved service instance.</returns><exception cref="T:Funq.ResolutionException">The given service could not be resolved.</exception>
</member>
<member name="M:Funq.Container.Resolve``7(``1,``2,``3,``4,``5,``6)">
<summary>
Resolves the given service by type, passing the given arguments
for its initialization.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><typeparam name="TArg1">First argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg2">Second argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg3">Third argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg4">Fourth argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg5">Fifth argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg6">Sixth argument to pass to the factory delegate that may create the instace.</typeparam><returns>The resolved service instance.</returns><exception cref="T:Funq.ResolutionException">The given service could not be resolved.</exception>
</member>
<member name="M:Funq.Container.ResolveNamed``1(System.String)">
<summary>
Resolves the given service by type and name, without passing arguments for its initialization.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><returns>The resolved service instance.</returns><exception cref="T:Funq.ResolutionException">The given service could not be resolved.</exception>
</member>
<member name="M:Funq.Container.ResolveNamed``2(System.String,``1)">
<summary>
Resolves the given service by type and name, passing the given arguments
for its initialization.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><typeparam name="TArg">First argument to pass to the factory delegate that may create the instace.</typeparam><returns>The resolved service instance.</returns><exception cref="T:Funq.ResolutionException">The given service could not be resolved.</exception>
</member>
<member name="M:Funq.Container.ResolveNamed``3(System.String,``1,``2)">
<summary>
Resolves the given service by type and name, passing the given arguments
for its initialization.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><typeparam name="TArg1">First argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg2">Second argument to pass to the factory delegate that may create the instace.</typeparam><returns>The resolved service instance.</returns><exception cref="T:Funq.ResolutionException">The given service could not be resolved.</exception>
</member>
<member name="M:Funq.Container.ResolveNamed``4(System.String,``1,``2,``3)">
<summary>
Resolves the given service by type and name, passing the given arguments
for its initialization.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><typeparam name="TArg1">First argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg2">Second argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg3">Third argument to pass to the factory delegate that may create the instace.</typeparam><returns>The resolved service instance.</returns><exception cref="T:Funq.ResolutionException">The given service could not be resolved.</exception>
</member>
<member name="M:Funq.Container.ResolveNamed``5(System.String,``1,``2,``3,``4)">
<summary>
Resolves the given service by type and name, passing the given arguments
for its initialization.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><typeparam name="TArg1">First argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg2">Second argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg3">Third argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg4">Fourth argument to pass to the factory delegate that may create the instace.</typeparam><returns>The resolved service instance.</returns><exception cref="T:Funq.ResolutionException">The given service could not be resolved.</exception>
</member>
<member name="M:Funq.Container.ResolveNamed``6(System.String,``1,``2,``3,``4,``5)">
<summary>
Resolves the given service by type and name, passing the given arguments
for its initialization.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><typeparam name="TArg1">First argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg2">Second argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg3">Third argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg4">Fourth argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg5">Fifth argument to pass to the factory delegate that may create the instace.</typeparam><returns>The resolved service instance.</returns><exception cref="T:Funq.ResolutionException">The given service could not be resolved.</exception>
</member>
<member name="M:Funq.Container.ResolveNamed``7(System.String,``1,``2,``3,``4,``5,``6)">
<summary>
Resolves the given service by type and name, passing the given arguments
for its initialization.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><typeparam name="TArg1">First argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg2">Second argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg3">Third argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg4">Fourth argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg5">Fifth argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg6">Sixth argument to pass to the factory delegate that may create the instace.</typeparam><returns>The resolved service instance.</returns><exception cref="T:Funq.ResolutionException">The given service could not be resolved.</exception>
</member>
<member name="M:Funq.Container.TryResolve``1">
<summary>
Attempts to resolve the given service by type, without passing arguments for its initialization.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><returns>
The resolved service instance or <see langword="null"/> if it cannot be resolved.
</returns>
</member>
<member name="M:Funq.Container.TryResolve``2(``1)">
<summary>
Attempts to resolve the given service by type, passing the
given arguments arguments for its initialization.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><typeparam name="TArg">First argument to pass to the factory delegate that may create the instace.</typeparam><returns>
The resolved service instance or <see langword="null"/> if it cannot be resolved.
</returns>
</member>
<member name="M:Funq.Container.TryResolve``3(``1,``2)">
<summary>
Attempts to resolve the given service by type, passing the
given arguments arguments for its initialization.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><typeparam name="TArg1">First argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg2">Second argument to pass to the factory delegate that may create the instace.</typeparam><returns>
The resolved service instance or <see langword="null"/> if it cannot be resolved.
</returns>
</member>
<member name="M:Funq.Container.TryResolve``4(``1,``2,``3)">
<summary>
Attempts to resolve the given service by type, passing the
given arguments arguments for its initialization.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><typeparam name="TArg1">First argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg2">Second argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg3">Third argument to pass to the factory delegate that may create the instace.</typeparam><returns>
The resolved service instance or <see langword="null"/> if it cannot be resolved.
</returns>
</member>
<member name="M:Funq.Container.TryResolve``5(``1,``2,``3,``4)">
<summary>
Attempts to resolve the given service by type, passing the
given arguments arguments for its initialization.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><typeparam name="TArg1">First argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg2">Second argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg3">Third argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg4">Fourth argument to pass to the factory delegate that may create the instace.</typeparam><returns>
The resolved service instance or <see langword="null"/> if it cannot be resolved.
</returns>
</member>
<member name="M:Funq.Container.TryResolve``6(``1,``2,``3,``4,``5)">
<summary>
Attempts to resolve the given service by type, passing the
given arguments arguments for its initialization.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><typeparam name="TArg1">First argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg2">Second argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg3">Third argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg4">Fourth argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg5">Fifth argument to pass to the factory delegate that may create the instace.</typeparam><returns>
The resolved service instance or <see langword="null"/> if it cannot be resolved.
</returns>
</member>
<member name="M:Funq.Container.TryResolve``7(``1,``2,``3,``4,``5,``6)">
<summary>
Attempts to resolve the given service by type, passing the
given arguments arguments for its initialization.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><typeparam name="TArg1">First argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg2">Second argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg3">Third argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg4">Fourth argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg5">Fifth argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg6">Sixth argument to pass to the factory delegate that may create the instace.</typeparam><returns>
The resolved service instance or <see langword="null"/> if it cannot be resolved.
</returns>
</member>
<member name="M:Funq.Container.TryResolveNamed``1(System.String)">
<summary>
Attempts to resolve the given service by type and name, without passing
arguments arguments for its initialization.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><returns>
The resolved service instance or <see langword="null"/> if it cannot be resolved.
</returns>
</member>
<member name="M:Funq.Container.TryResolveNamed``2(System.String,``1)">
<summary>
Attempts to resolve the given service by type and name, passing the
given arguments arguments for its initialization.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><typeparam name="TArg">First argument to pass to the factory delegate that may create the instace.</typeparam><returns>
The resolved service instance or <see langword="null"/> if it cannot be resolved.
</returns>
</member>
<member name="M:Funq.Container.TryResolveNamed``3(System.String,``1,``2)">
<summary>
Attempts to resolve the given service by type and name, passing the
given arguments arguments for its initialization.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><typeparam name="TArg1">First argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg2">Second argument to pass to the factory delegate that may create the instace.</typeparam><returns>
The resolved service instance or <see langword="null"/> if it cannot be resolved.
</returns>
</member>
<member name="M:Funq.Container.TryResolveNamed``4(System.String,``1,``2,``3)">
<summary>
Attempts to resolve the given service by type and name, passing the
given arguments arguments for its initialization.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><typeparam name="TArg1">First argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg2">Second argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg3">Third argument to pass to the factory delegate that may create the instace.</typeparam><returns>
The resolved service instance or <see langword="null"/> if it cannot be resolved.
</returns>
</member>
<member name="M:Funq.Container.TryResolveNamed``5(System.String,``1,``2,``3,``4)">
<summary>
Attempts to resolve the given service by type and name, passing the
given arguments arguments for its initialization.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><typeparam name="TArg1">First argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg2">Second argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg3">Third argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg4">Fourth argument to pass to the factory delegate that may create the instace.</typeparam><returns>
The resolved service instance or <see langword="null"/> if it cannot be resolved.
</returns>
</member>
<member name="M:Funq.Container.TryResolveNamed``6(System.String,``1,``2,``3,``4,``5)">
<summary>
Attempts to resolve the given service by type and name, passing the
given arguments arguments for its initialization.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><typeparam name="TArg1">First argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg2">Second argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg3">Third argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg4">Fourth argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg5">Fifth argument to pass to the factory delegate that may create the instace.</typeparam><returns>
The resolved service instance or <see langword="null"/> if it cannot be resolved.
</returns>
</member>
<member name="M:Funq.Container.TryResolveNamed``7(System.String,``1,``2,``3,``4,``5,``6)">
<summary>
Attempts to resolve the given service by type and name, passing the
given arguments arguments for its initialization.
</summary><typeparam name="TService">Type of the service to retrieve.</typeparam><typeparam name="TArg1">First argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg2">Second argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg3">Third argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg4">Fourth argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg5">Fifth argument to pass to the factory delegate that may create the instace.</typeparam><typeparam name="TArg6">Sixth argument to pass to the factory delegate that may create the instace.</typeparam><returns>
The resolved service instance or <see langword="null"/> if it cannot be resolved.
</returns>
</member>
<member name="M:Funq.Container.RegisterAutoWired``1">
<summary>
Register an autowired dependency
</summary>
<typeparam name="T"></typeparam>
</member>
<member name="M:Funq.Container.RegisterAutoWiredAs``2">
<summary>
Register an autowired dependency as a separate type
</summary>
<typeparam name="T"></typeparam>
</member>
<member name="M:Funq.Container.RegisterAs``2">
<summary>
Alias for RegisterAutoWiredAs
</summary>
<typeparam name="T"></typeparam>
</member>
<member name="M:Funq.Container.AutoWire(System.Object)">
<summary>
Auto-wires an existing instance,
ie all public properties are tried to be resolved.
</summary>
<param name="instance"></param>
</member>
<member name="M:Funq.Container.GenerateAutoWireFn``1">
<summary>
Generates a function which creates and auto-wires <see cref="!:TService"/>.
</summary>
<typeparam name="TService"></typeparam>
<param name="lambdaParam"></param>
<returns></returns>
</member>
<member name="M:Funq.Container.AutoWire(Funq.Container,System.Object)">
<summary>
Auto-wires an existing instance of a specific type.
The auto-wiring progress is also cached to be faster
when calling next time with the same type.
</summary>
<param name="instance"></param>
</member>
<member name="P:Funq.Container.DefaultOwner">
<summary>
Default owner for new registrations. <see cref="F:Funq.Owner.Container"/> by default.
</summary>
</member>
<member name="P:Funq.Container.DefaultReuse">
<summary>
Default reuse scope for new registrations. <see cref="F:Funq.ReuseScope.Hierarchy"/> by default.
</summary>
</member>
<member name="M:ServiceStack.ServiceHost.ContainerTypeExtensions.RegisterAutoWiredType(Funq.Container,System.Type,System.Type,Funq.ReuseScope)">
<summary>
Registers the type in the IoC container and
adds auto-wiring to the specified type.
</summary>
<param name="serviceType"></param>
<param name="inFunqAsType"></param>
</member>
<member name="M:ServiceStack.ServiceHost.ContainerTypeExtensions.RegisterAutoWiredType(Funq.Container,System.Type,Funq.ReuseScope)">
<summary>
Registers the type in the IoC container and
adds auto-wiring to the specified type.
The reuse scope is set to none (transient).
</summary>
<param name="serviceTypes"></param>
</member>
<member name="M:ServiceStack.ServiceHost.ContainerTypeExtensions.RegisterAutoWiredTypes(Funq.Container,System.Collections.Generic.IEnumerable{System.Type},Funq.ReuseScope)">
<summary>
Registers the types in the IoC container and
adds auto-wiring to the specified types.
The reuse scope is set to none (transient).
</summary>
<param name="serviceTypes"></param>
</member>
<member name="T:Funq.Func`6">
<summary>
Encapsulates a method that has five parameters and returns a value of the
type specified by the <typeparamref name="TResult"/> parameter.
</summary>
</member>
<member name="T:Funq.Func`7">
<summary>
Encapsulates a method that has six parameters and returns a value of the
type specified by the <typeparamref name="TResult"/> parameter.
</summary>
</member>
<member name="T:Funq.Func`8">
<summary>
Encapsulates a method that has seven parameters and returns a value of the
type specified by the <typeparamref name="TResult"/> parameter.
</summary>
</member>
<member name="T:Funq.IFluentInterface">
<summary>
Helper interface used to hide the base <see cref="T:System.Object"/>
members from the fluent API to make for much cleaner
Visual Studio intellisense experience.
</summary>
</member>
<member name="M:Funq.IFluentInterface.GetType">
<summary/>
</member>
<member name="M:Funq.IFluentInterface.GetHashCode">
<summary/>
</member>
<member name="M:Funq.IFluentInterface.ToString">
<summary/>
</member>
<member name="M:Funq.IFluentInterface.Equals(System.Object)">
<summary/>
</member>
<member name="T:Funq.IFunqlet">
<summary>
Funqlets are a set of components provided as a package
to an existing container (like a module).
</summary>
</member>
<member name="M:Funq.IFunqlet.Configure(Funq.Container)">
<summary>
Configure the given container with the
registrations provided by the funqlet.
</summary>
<param name="container">Container to register.</param>
</member>
<member name="T:Funq.IContainerModule">
<summary>
Interface used by plugins to contribute registrations
to an existing container.
</summary>
</member>
<member name="T:Funq.Owner">
<summary>
Determines who is responsible for disposing instances
registered with a container.
</summary>
</member>
<member name="F:Funq.Owner.Container">
<summary>
Container should dispose provided instances when it is disposed. This is the
default.
</summary>
</member>
<member name="F:Funq.Owner.External">
<summary>
Container does not dispose provided instances.
</summary>
</member>
<member name="F:Funq.Owner.Default">
<summary>
Default owner, which equals <see cref="F:Funq.Owner.Container"/>.
</summary>
</member>
<member name="T:Funq.ResolutionException">
<summary>
Exception thrown by the container when a service cannot be resolved.
</summary>
</member>
<member name="M:Funq.ResolutionException.#ctor(System.Type)">
<summary>
Initializes the exception with the service that could not be resolved.
</summary>
</member>
<member name="M:Funq.ResolutionException.#ctor(System.Type,System.String)">
<summary>
Initializes the exception with the service (and its name) that could not be resolved.
</summary>
</member>
<member name="M:Funq.ResolutionException.#ctor(System.String)">
<summary>
Initializes the exception with an arbitrary message.
</summary>
</member>
<member name="T:Funq.ReuseScope">
<summary>
Determines visibility and reuse of instances provided by the container.
</summary>
</member>
<member name="F:Funq.ReuseScope.Hierarchy">
<summary>
Instances are reused within a container hierarchy. Instances
are created (if necessary) in the container where the registration
was performed, and are reused by all descendent containers.
</summary>
</member>
<member name="F:Funq.ReuseScope.Container">
<summary>
Instances are reused only at the given container. Descendent
containers do not reuse parent container instances and get
a new instance at their level.
</summary>
</member>
<member name="F:Funq.ReuseScope.None">
<summary>
Each request to resolve the dependency will result in a new
instance being returned.
</summary>
</member>
<member name="F:Funq.ReuseScope.Request">
<summary>
Instaces are reused within the given request
</summary>
</member>
<member name="F:Funq.ReuseScope.Default">
<summary>
Default scope, which equals <see cref="F:Funq.ReuseScope.Hierarchy"/>.
</summary>
</member>
<member name="T:Funq.IRegistration">
<summary>
Fluent API for customizing the registration of a service.
</summary>
</member>
<member name="T:Funq.IReusedOwned">
<summary>
Fluent API that exposes both <see cref="M:Funq.IReused.ReusedWithin(Funq.ReuseScope)"/>
and owner (<see cref="M:Funq.IOwned.OwnedBy(Funq.Owner)"/>).
</summary>
</member>
<member name="T:Funq.IReused">
<summary>
Fluent API that allows specifying the reuse instances.
</summary>
</member>
<member name="M:Funq.IReused.ReusedWithin(Funq.ReuseScope)">
<summary>
Specifies how instances are reused within a container or hierarchy. Default
scope is <see cref="F:Funq.ReuseScope.Hierarchy"/>.
</summary>
</member>
<member name="T:Funq.IOwned">
<summary>
Fluent API that allows specifying the owner of instances
created from a registration.
</summary>
</member>
<member name="M:Funq.IOwned.OwnedBy(Funq.Owner)">
<summary>
Specifies the owner of instances created from this registration. Default
owner is <see cref="F:Funq.Owner.Container"/>.
</summary>
</member>
<member name="F:Funq.ServiceEntry.Owner">
<summary>
Ownership setting for the service.
</summary>
</member>
<member name="F:Funq.ServiceEntry.Reuse">
<summary>
Reuse scope setting for the service.
</summary>
</member>
<member name="F:Funq.ServiceEntry.Container">
<summary>
The container where the entry was registered.
</summary>
</member>
<member name="M:Funq.ServiceEntry.OwnedBy(Funq.Owner)">
<summary>
Specifies the owner for instances, which determines how
they will be disposed.
</summary>
</member>
<member name="M:Funq.ServiceEntry.ReusedWithin(Funq.ReuseScope)">
<summary>
Specifies the scope for instances, which determines
visibility of instances across containers and hierarchies.
</summary>
</member>
<member name="T:Funq.IRegistration`1">
<summary>
Fluent API for customizing the registration of a service.
</summary>
</member>
<member name="T:Funq.IInitializable`1">
<summary>
Fluent API that allows registering an initializer for the
service.
</summary>
</member>
<member name="M:Funq.IInitializable`1.InitializedBy(System.Action{Funq.Container,`0})">
<summary>
Specifies an initializer that should be invoked after
the service instance has been created by the factory.
</summary>
</member>
<member name="F:Funq.ServiceEntry`2.Factory">
<summary>
The Func delegate that creates instances of the service.
</summary>
</member>
<member name="F:Funq.ServiceEntry`2.instance">
<summary>
The cached service instance if the scope is <see cref="F:Funq.ReuseScope.Hierarchy"/> or
<see cref="F:Funq.ReuseScope.Container"/>.
</summary>
</member>
<member name="F:Funq.ServiceEntry`2.Initializer">
<summary>
The Func delegate that initializes the object after creation.
</summary>
</member>
<member name="M:Funq.ServiceEntry`2.CloneFor(Funq.Container)">
<summary>
Clones the service entry assigning the <see cref="T:Funq.Container"/> to the
<paramref name="newContainer"/>. Does not copy the <see cref="P:Funq.ServiceEntry`2.Instance"/>.
</summary>
</member>