-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAutofac.xml
6923 lines (6909 loc) · 380 KB
/
Autofac.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>Autofac</name>
</assembly>
<members>
<member name="T:Autofac.Core.AutoActivateService">
<summary>
Service used as a "flag" to indicate a particular component should be
automatically activated on container build.
</summary>
</member>
<member name="T:Autofac.Core.Service">
<summary>
Services are the lookup keys used to locate component instances.
</summary>
</member>
<member name="M:Autofac.Core.Service.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</summary>
<returns>
A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="M:Autofac.Core.Service.op_Equality(Autofac.Core.Service,Autofac.Core.Service)">
<summary>
Implements the operator ==.
</summary>
<param name="left">The left operand.</param>
<param name="right">The right operand.</param>
<returns>The result of the operator.</returns>
</member>
<member name="M:Autofac.Core.Service.op_Inequality(Autofac.Core.Service,Autofac.Core.Service)">
<summary>
Implements the operator !=.
</summary>
<param name="left">The left operand.</param>
<param name="right">The right operand.</param>
<returns>The result of the operator.</returns>
</member>
<member name="M:Autofac.Core.Service.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
</summary>
<param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
<returns>
true if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, false.
</returns>
<exception cref="T:System.NullReferenceException">The <paramref name="obj"/> parameter is null.</exception>
</member>
<member name="M:Autofac.Core.Service.GetHashCode">
<summary>
Serves as a hash function for a particular type.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="P:Autofac.Core.Service.Description">
<summary>
Gets a human-readable description of the service.
</summary>
<value>The description.</value>
</member>
<member name="M:Autofac.Core.AutoActivateService.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
</summary>
<param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
<returns>
<see langword="true"/> if the specified <see cref="T:System.Object"/> is not <see langword="null"/>
and is an <see cref="T:Autofac.Core.AutoActivateService"/>; otherwise, <see langword="false"/>.
</returns>
<remarks>
<para>
All services of this type are considered "equal."
</para>
</remarks>
</member>
<member name="M:Autofac.Core.AutoActivateService.GetHashCode">
<summary>
Serves as a hash function for a particular type.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"/>. Always <c>0</c> for this type.
</returns>
<remarks>
<para>
All services of this type are considered "equal" and use the same hash code.
</para>
</remarks>
</member>
<member name="P:Autofac.Core.AutoActivateService.Description">
<summary>
Gets the service description.
</summary>
<value>
Always returns <c>AutoActivate</c>.
</value>
</member>
<member name="T:Autofac.Builder.MetadataConfiguration`1">
<summary>
Used with the WithMetadata configuration method to
associate key-value pairs with an <see cref="T:Autofac.Core.IComponentRegistration"/>.
</summary>
<typeparam name="TMetadata">Interface with properties whose names correspond to
the property keys.</typeparam>
<remarks>This feature was suggested by OJ Reeves (@TheColonial).</remarks>
</member>
<member name="M:Autofac.Builder.MetadataConfiguration`1.For``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},``0)">
<summary>
Set one of the property values.
</summary>
<typeparam name="TProperty">The type of the property.</typeparam>
<param name="propertyAccessor">An expression that accesses the property to set.</param>
<param name="value">The property value to set.</param>
</member>
<member name="T:Autofac.Core.Activators.Reflection.MostParametersConstructorSelectorResources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:Autofac.Core.Activators.Reflection.MostParametersConstructorSelectorResources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:Autofac.Core.Activators.Reflection.MostParametersConstructorSelectorResources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="P:Autofac.Core.Activators.Reflection.MostParametersConstructorSelectorResources.UnableToChooseFromMultipleConstructors">
<summary>
Looks up a localized string similar to Cannot choose between multiple constructors with equal length {0} on type '{1}'. Select the constructor explicitly, with the UsingConstructor() configuration method, when the component is registered..
</summary>
</member>
<member name="T:Autofac.Core.DependencyResolutionExceptionResources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:Autofac.Core.DependencyResolutionExceptionResources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:Autofac.Core.DependencyResolutionExceptionResources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="P:Autofac.Core.DependencyResolutionExceptionResources.MessageNestingFormat">
<summary>
Looks up a localized string similar to {0} ---> {1} (See inner exception for details.).
</summary>
</member>
<member name="T:Autofac.Core.Lifetime.MatchingScopeLifetimeTags">
<summary>
Well-known tags used in setting up matching lifetime scopes.
</summary>
</member>
<member name="F:Autofac.Core.Lifetime.MatchingScopeLifetimeTags.RequestLifetimeScopeTag">
<summary>
Tag used in setting up per-request lifetime scope registrations
(e.g., per-HTTP-request or per-API-request).
</summary>
</member>
<member name="T:Autofac.Core.Registration.IModuleRegistrar">
<summary>
Interface providing fluent syntax for chaining module registrations.
</summary>
</member>
<member name="M:Autofac.Core.Registration.IModuleRegistrar.RegisterModule(Autofac.Core.IModule)">
<summary>
Add a module to the container.
</summary>
<param name="module">The module to add.</param>
<returns>
The <see cref="T:Autofac.Core.Registration.IModuleRegistrar"/> to allow
additional chained module registrations.
</returns>
</member>
<member name="T:Autofac.Core.Registration.ModuleRegistrar">
<summary>
Basic implementation of the <see cref="T:Autofac.Core.Registration.IModuleRegistrar"/>
interface allowing registration of modules into a <see cref="T:Autofac.ContainerBuilder"/>
in a fluent format.
</summary>
</member>
<member name="F:Autofac.Core.Registration.ModuleRegistrar._builder">
<summary>
The <see cref="T:Autofac.ContainerBuilder"/> into which registrations will be made.
</summary>
</member>
<member name="M:Autofac.Core.Registration.ModuleRegistrar.#ctor(Autofac.ContainerBuilder)">
<summary>
Initializes a new instance of the <see cref="T:Autofac.Core.Registration.ModuleRegistrar"/> class.
</summary>
<param name="builder">
The <see cref="T:Autofac.ContainerBuilder"/> into which registrations will be made.
</param>
<exception cref="T:System.ArgumentNullException">
Thrown if <paramref name="builder"/> is <see langword="null"/>.
</exception>
</member>
<member name="M:Autofac.Core.Registration.ModuleRegistrar.RegisterModule(Autofac.Core.IModule)">
<summary>
Add a module to the container.
</summary>
<param name="module">The module to add.</param>
<returns>
The <see cref="T:Autofac.Core.Registration.IModuleRegistrar"/> to allow
additional chained module registrations.
</returns>
<exception cref="T:System.ArgumentNullException">
Thrown if <paramref name="module"/> is <see langword="null"/>.
</exception>
</member>
<member name="T:Autofac.Features.LazyDependencies.LazyWithMetadataRegistrationSource">
<summary>
Support the <c>System.Lazy<T, TMetadata></c>
types automatically whenever type T is registered with the container.
Metadata values come from the component registration's metadata.
When a dependency of a lazy type is used, the instantiation of the underlying
component will be delayed until the Value property is first accessed.
</summary>
</member>
<member name="T:Autofac.Core.IRegistrationSource">
<summary>
Allows registrations to be made on-the-fly when unregistered
services are requested (lazy registrations.)
</summary>
</member>
<member name="M:Autofac.Core.IRegistrationSource.RegistrationsFor(Autofac.Core.Service,System.Func{Autofac.Core.Service,System.Collections.Generic.IEnumerable{Autofac.Core.IComponentRegistration}})">
<summary>
Retrieve registrations for an unregistered service, to be used
by the container.
</summary>
<param name="service">The service that was requested.</param>
<param name="registrationAccessor">A function that will return existing registrations for a service.</param>
<returns>Registrations providing the service.</returns>
<remarks>
If the source is queried for service s, and it returns a component that implements both s and s', then it
will not be queried again for either s or s'. This means that if the source can return other implementations
of s', it should return these, plus the transitive closure of other components implementing their
additional services, along with the implementation of s. It is not an error to return components
that do not implement <paramref name="service"/>.
</remarks>
</member>
<member name="P:Autofac.Core.IRegistrationSource.IsAdapterForIndividualComponents">
<summary>
Gets whether the registrations provided by this source are 1:1 adapters on top
of other components (I.e. like Meta, Func or Owned.)
</summary>
</member>
<member name="T:Autofac.Features.LazyDependencies.LazyWithMetadataRegistrationSourceResources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:Autofac.Features.LazyDependencies.LazyWithMetadataRegistrationSourceResources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:Autofac.Features.LazyDependencies.LazyWithMetadataRegistrationSourceResources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="P:Autofac.Features.LazyDependencies.LazyWithMetadataRegistrationSourceResources.LazyWithMetadataRegistrationSourceDescription">
<summary>
Looks up a localized string similar to Lazy<T, TMetadata> Support.
</summary>
</member>
<member name="T:Autofac.Features.Metadata.MetadataViewProviderResources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:Autofac.Features.Metadata.MetadataViewProviderResources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:Autofac.Features.Metadata.MetadataViewProviderResources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="P:Autofac.Features.Metadata.MetadataViewProviderResources.InvalidViewImplementation">
<summary>
Looks up a localized string similar to The type '{0}' cannot be used as a metadata view. A metadata view must be a concrete class with a parameterless or dictionary constructor..
</summary>
</member>
<member name="P:Autofac.Features.Metadata.MetadataViewProviderResources.MissingMetadata">
<summary>
Looks up a localized string similar to Export metadata for '{0}' is missing and no default value was supplied..
</summary>
</member>
<member name="T:Autofac.Features.Metadata.Meta`2">
<summary>
Provides a value along with metadata describing the value.
</summary>
<typeparam name="T">The type of the value.</typeparam>
<typeparam name="TMetadata">An interface to which metadata values can be bound.</typeparam>
</member>
<member name="M:Autofac.Features.Metadata.Meta`2.#ctor(`0,`1)">
<summary>
Create a new instance.
</summary>
<param name="value">The value described by the instance.</param>
<param name="metadata">The metadata describing the value.</param>
</member>
<member name="P:Autofac.Features.Metadata.Meta`2.Value">
<summary>
The value described by <see cref="P:Autofac.Features.Metadata.Meta`2.Metadata"/>.
</summary>
</member>
<member name="P:Autofac.Features.Metadata.Meta`2.Metadata">
<summary>
Metadata describing the value.
</summary>
</member>
<member name="T:Autofac.Features.Metadata.StronglyTypedMetaRegistrationSource">
<summary>
Support the <see cref="T:Autofac.Features.Metadata.Meta`2"/>
types automatically whenever type T is registered with the container.
Metadata values come from the component registration's metadata.
</summary>
</member>
<member name="T:Autofac.Core.Activators.Reflection.DefaultConstructorFinder">
<summary>
Finds constructors that match a finder function.
</summary>
</member>
<member name="T:Autofac.Core.Activators.Reflection.IConstructorFinder">
<summary>
Find suitable constructors from which to select.
</summary>
</member>
<member name="M:Autofac.Core.Activators.Reflection.IConstructorFinder.FindConstructors(System.Type)">
<summary>
Finds suitable constructors on the target type.
</summary>
<param name="targetType">Type to search for constructors.</param>
<returns>Suitable constructors.</returns>
</member>
<member name="M:Autofac.Core.Activators.Reflection.DefaultConstructorFinder.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Autofac.Core.Activators.Reflection.DefaultConstructorFinder"/> class.
</summary>
<remarks>
Default to selecting all public constructors.
</remarks>
</member>
<member name="M:Autofac.Core.Activators.Reflection.DefaultConstructorFinder.#ctor(System.Func{System.Type,System.Reflection.ConstructorInfo[]})">
<summary>
Initializes a new instance of the <see cref="T:Autofac.Core.Activators.Reflection.DefaultConstructorFinder"/> class.
</summary>
<param name="finder">The finder function.</param>
</member>
<member name="M:Autofac.Core.Activators.Reflection.DefaultConstructorFinder.FindConstructors(System.Type)">
<summary>
Finds suitable constructors on the target type.
</summary>
<param name="targetType">Type to search for constructors.</param>
<returns>Suitable constructors.</returns>
</member>
<member name="T:Autofac.Features.ResolveAnything.AnyConcreteTypeNotAlreadyRegisteredSourceExtensions">
<summary>
Extension methods for configuring the <see cref="T:Autofac.Features.ResolveAnything.AnyConcreteTypeNotAlreadyRegisteredSource"/>.
</summary>
</member>
<member name="M:Autofac.Features.ResolveAnything.AnyConcreteTypeNotAlreadyRegisteredSourceExtensions.WithRegistrationsAs(Autofac.Features.ResolveAnything.AnyConcreteTypeNotAlreadyRegisteredSource,System.Action{Autofac.Builder.IRegistrationBuilder{System.Object,Autofac.Builder.ConcreteReflectionActivatorData,Autofac.Builder.SingleRegistrationStyle}})">
<summary>
Fluent method for setting the registration configuration on <see cref="T:Autofac.Features.ResolveAnything.AnyConcreteTypeNotAlreadyRegisteredSource"/>.
</summary>
<param name="source">The registration source to configure.</param>
<param name="configurationAction">A configuration action that will run on any registration provided by the source.</param>
<returns>
The <paramref name="source"/> with the registration configuration set.
</returns>
</member>
<member name="T:Autofac.ModuleRegistrationExtensions">
<summary>
Extension methods for registering <see cref="T:Autofac.Core.IModule"/> instances with a container.
</summary>
</member>
<member name="M:Autofac.ModuleRegistrationExtensions.RegisterAssemblyModules(Autofac.ContainerBuilder,System.Reflection.Assembly[])">
<summary>
Registers modules found in an assembly.
</summary>
<param name="builder">The builder to register the modules with.</param>
<param name="assemblies">The assemblies from which to register modules.</param>
<exception cref="T:System.ArgumentNullException">
Thrown if <paramref name="builder"/> is <see langword="null"/>.
</exception>
<returns>
The <see cref="T:Autofac.Core.Registration.IModuleRegistrar"/> to allow
additional chained module registrations.
</returns>
</member>
<member name="M:Autofac.ModuleRegistrationExtensions.RegisterAssemblyModules(Autofac.Core.Registration.IModuleRegistrar,System.Reflection.Assembly[])">
<summary>
Registers modules found in an assembly.
</summary>
<param name="registrar">The module registrar that will make the registrations into the container.</param>
<param name="assemblies">The assemblies from which to register modules.</param>
<exception cref="T:System.ArgumentNullException">
Thrown if <paramref name="registrar"/> is <see langword="null"/>.
</exception>
<returns>
The <see cref="T:Autofac.Core.Registration.IModuleRegistrar"/> to allow
additional chained module registrations.
</returns>
</member>
<member name="M:Autofac.ModuleRegistrationExtensions.RegisterAssemblyModules``1(Autofac.ContainerBuilder,System.Reflection.Assembly[])">
<summary>
Registers modules found in an assembly.
</summary>
<param name="builder">The builder to register the modules with.</param>
<param name="assemblies">The assemblies from which to register modules.</param>
<typeparam name="TModule">The type of the module to add.</typeparam>
<exception cref="T:System.ArgumentNullException">
Thrown if <paramref name="builder"/> is <see langword="null"/>.
</exception>
<returns>
The <see cref="T:Autofac.Core.Registration.IModuleRegistrar"/> to allow
additional chained module registrations.
</returns>
</member>
<member name="M:Autofac.ModuleRegistrationExtensions.RegisterAssemblyModules``1(Autofac.Core.Registration.IModuleRegistrar,System.Reflection.Assembly[])">
<summary>
Registers modules found in an assembly.
</summary>
<param name="registrar">The module registrar that will make the registrations into the container.</param>
<param name="assemblies">The assemblies from which to register modules.</param>
<typeparam name="TModule">The type of the module to add.</typeparam>
<exception cref="T:System.ArgumentNullException">
Thrown if <paramref name="registrar"/> is <see langword="null"/>.
</exception>
<returns>
The <see cref="T:Autofac.Core.Registration.IModuleRegistrar"/> to allow
additional chained module registrations.
</returns>
</member>
<member name="M:Autofac.ModuleRegistrationExtensions.RegisterAssemblyModules(Autofac.ContainerBuilder,System.Type,System.Reflection.Assembly[])">
<summary>
Registers modules found in an assembly.
</summary>
<param name="builder">The builder to register the modules with.</param>
<param name="moduleType">The <see cref="T:System.Type"/> of the module to add.</param>
<param name="assemblies">The assemblies from which to register modules.</param>
<exception cref="T:System.ArgumentNullException">
Thrown if <paramref name="builder"/> or <paramref name="moduleType"/> is <see langword="null"/>.
</exception>
<returns>
The <see cref="T:Autofac.Core.Registration.IModuleRegistrar"/> to allow
additional chained module registrations.
</returns>
</member>
<member name="M:Autofac.ModuleRegistrationExtensions.RegisterAssemblyModules(Autofac.Core.Registration.IModuleRegistrar,System.Type,System.Reflection.Assembly[])">
<summary>
Registers modules found in an assembly.
</summary>
<param name="registrar">The module registrar that will make the registrations into the container.</param>
<param name="moduleType">The <see cref="T:System.Type"/> of the module to add.</param>
<param name="assemblies">The assemblies from which to register modules.</param>
<exception cref="T:System.ArgumentNullException">
Thrown if <paramref name="registrar"/> or <paramref name="moduleType"/> is <see langword="null"/>.
</exception>
<returns>
The <see cref="T:Autofac.Core.Registration.IModuleRegistrar"/> to allow
additional chained module registrations.
</returns>
</member>
<member name="M:Autofac.ModuleRegistrationExtensions.RegisterModule``1(Autofac.ContainerBuilder)">
<summary>
Add a module to the container.
</summary>
<param name="builder">The builder to register the module with.</param>
<typeparam name="TModule">The module to add.</typeparam>
<exception cref="T:System.ArgumentNullException">
Thrown if <paramref name="builder"/> is <see langword="null"/>.
</exception>
<returns>
The <see cref="T:Autofac.Core.Registration.IModuleRegistrar"/> to allow
additional chained module registrations.
</returns>
</member>
<member name="M:Autofac.ModuleRegistrationExtensions.RegisterModule``1(Autofac.Core.Registration.IModuleRegistrar)">
<summary>
Add a module to the container.
</summary>
<param name="registrar">The module registrar that will make the registration into the container.</param>
<typeparam name="TModule">The module to add.</typeparam>
<exception cref="T:System.ArgumentNullException">
Thrown if <paramref name="registrar"/> is <see langword="null"/>.
</exception>
<returns>
The <see cref="T:Autofac.Core.Registration.IModuleRegistrar"/> to allow
additional chained module registrations.
</returns>
</member>
<member name="M:Autofac.ModuleRegistrationExtensions.RegisterModule(Autofac.ContainerBuilder,Autofac.Core.IModule)">
<summary>
Add a module to the container.
</summary>
<param name="builder">The builder to register the module with.</param>
<param name="module">The module to add.</param>
<exception cref="T:System.ArgumentNullException">
Thrown if <paramref name="builder"/> or <paramref name="module"/> is <see langword="null"/>.
</exception>
<returns>
The <see cref="T:Autofac.Core.Registration.IModuleRegistrar"/> to allow
additional chained module registrations.
</returns>
</member>
<member name="T:Autofac.ModuleResources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:Autofac.ModuleResources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:Autofac.ModuleResources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="P:Autofac.ModuleResources.ThisAssemblyUnavailable">
<summary>
Looks up a localized string similar to Module.ThisAssembly is only available in modules that inherit directly from Module..
</summary>
</member>
<member name="T:Autofac.Features.LazyDependencies.LazyRegistrationSource">
<summary>
Support the <see cref="T:System.Lazy`1"/>
type automatically whenever type T is registered with the container.
When a dependency of a lazy type is used, the instantiation of the underlying
component will be delayed until the Value property is first accessed.
</summary>
</member>
<member name="T:Autofac.Features.GeneratedFactories.FactoryGenerator">
<summary>
Generates context-bound closures that represent factories from
a set of heuristics based on delegate type signatures.
</summary>
</member>
<member name="M:Autofac.Features.GeneratedFactories.FactoryGenerator.#ctor(System.Type,Autofac.Core.Service,Autofac.Features.GeneratedFactories.ParameterMapping)">
<summary>
Create a factory generator.
</summary>
<param name="service">The service that will be activated in
order to create the products of the factory.</param>
<param name="delegateType">The delegate to provide as a factory.</param>
<param name="parameterMapping">The parameter mapping mode to use.</param>
</member>
<member name="M:Autofac.Features.GeneratedFactories.FactoryGenerator.#ctor(System.Type,Autofac.Core.IComponentRegistration,Autofac.Features.GeneratedFactories.ParameterMapping)">
<summary>
Create a factory generator.
</summary>
<param name="productRegistration">The component that will be activated in
order to create the products of the factory.</param>
<param name="delegateType">The delegate to provide as a factory.</param>
<param name="parameterMapping">The parameter mapping mode to use.</param>
</member>
<member name="M:Autofac.Features.GeneratedFactories.FactoryGenerator.GenerateFactory(Autofac.IComponentContext,System.Collections.Generic.IEnumerable{Autofac.Core.Parameter})">
<summary>
Generates a factory delegate that closes over the provided context.
</summary>
<param name="context">The context in which the factory will be used.</param>
<param name="parameters">Parameters provided to the resolve call for the factory itself.</param>
<returns>A factory delegate that will work within the context.</returns>
</member>
<member name="M:Autofac.Features.GeneratedFactories.FactoryGenerator.GenerateFactory``1(Autofac.IComponentContext,System.Collections.Generic.IEnumerable{Autofac.Core.Parameter})">
<summary>
Generates a factory delegate that closes over the provided context.
</summary>
<param name="context">The context in which the factory will be used.</param>
<param name="parameters">Parameters provided to the resolve call for the factory itself.</param>
<returns>A factory delegate that will work within the context.</returns>
</member>
<member name="T:Autofac.Builder.ConcreteReflectionActivatorData">
<summary>
Reflection activator data for concrete types.
</summary>
</member>
<member name="T:Autofac.Builder.ReflectionActivatorData">
<summary>
Builder for reflection-based activators.
</summary>
</member>
<member name="M:Autofac.Builder.ReflectionActivatorData.#ctor(System.Type)">
<summary>
Specify a reflection activator for the given type.
</summary>
<param name="implementer">Type that will be activated.</param>
</member>
<member name="P:Autofac.Builder.ReflectionActivatorData.ImplementationType">
<summary>
Get the implementation type.
</summary>
</member>
<member name="P:Autofac.Builder.ReflectionActivatorData.ConstructorFinder">
<summary>
The constructor finder for the registration.
</summary>
</member>
<member name="P:Autofac.Builder.ReflectionActivatorData.ConstructorSelector">
<summary>
The constructor selector for the registration.
</summary>
</member>
<member name="P:Autofac.Builder.ReflectionActivatorData.ConfiguredParameters">
<summary>
The explicitly bound constructor parameters.
</summary>
</member>
<member name="P:Autofac.Builder.ReflectionActivatorData.ConfiguredProperties">
<summary>
The explicitly bound properties.
</summary>
</member>
<member name="T:Autofac.Builder.IConcreteActivatorData">
<summary>
Activator data that can provide an IInstanceActivator instance.
</summary>
</member>
<member name="P:Autofac.Builder.IConcreteActivatorData.Activator">
<summary>
The instance activator based on the provided data.
</summary>
</member>
<member name="M:Autofac.Builder.ConcreteReflectionActivatorData.#ctor(System.Type)">
<summary>
Specify a reflection activator for the given type.
</summary>
<param name="implementer">Type that will be activated.</param>
</member>
<member name="P:Autofac.Builder.ConcreteReflectionActivatorData.Activator">
<summary>
The instance activator based on the provided data.
</summary>
</member>
<member name="T:Autofac.Builder.ContainerBuildOptions">
<summary>
Parameterises the construction of a container by a <see cref="T:Autofac.ContainerBuilder"/>.
</summary>
</member>
<member name="F:Autofac.Builder.ContainerBuildOptions.None">
<summary>
No options - the default behavior for container building.
</summary>
</member>
<member name="F:Autofac.Builder.ContainerBuildOptions.ExcludeDefaultModules">
<summary>
Prevents inclusion of standard modules like support for
relationship types including <see cref="T:System.Collections.Generic.IEnumerable`1"/> etc.
</summary>
</member>
<member name="F:Autofac.Builder.ContainerBuildOptions.IgnoreStartableComponents">
<summary>
Does not call <see cref="M:Autofac.IStartable.Start"/> on components implementing
this interface (useful for module testing.)
</summary>
</member>
<member name="T:Autofac.Builder.IRegistrationBuilder`3">
<summary>
Data structure used to construct registrations.
</summary>
<typeparam name="TLimit">The most specific type to which instances of the registration
can be cast.</typeparam>
<typeparam name="TActivatorData">Activator builder type.</typeparam>
<typeparam name="TRegistrationStyle">Registration style type.</typeparam>
</member>
<member name="M:Autofac.Builder.IRegistrationBuilder`3.ExternallyOwned">
<summary>
Configure the component so that instances are never disposed by the container.
</summary>
<returns>A registration builder allowing further configuration of the component.</returns>
</member>
<member name="M:Autofac.Builder.IRegistrationBuilder`3.OwnedByLifetimeScope">
<summary>
Configure the component so that instances that support IDisposable are
disposed by the container (default.)
</summary>
<returns>A registration builder allowing further configuration of the component.</returns>
</member>
<member name="M:Autofac.Builder.IRegistrationBuilder`3.InstancePerDependency">
<summary>
Configure the component so that every dependent component or call to Resolve()
gets a new, unique instance (default.)
</summary>
<returns>A registration builder allowing further configuration of the component.</returns>
</member>
<member name="M:Autofac.Builder.IRegistrationBuilder`3.SingleInstance">
<summary>
Configure the component so that every dependent component or call to Resolve()
gets the same, shared instance.
</summary>
<returns>A registration builder allowing further configuration of the component.</returns>
</member>
<member name="M:Autofac.Builder.IRegistrationBuilder`3.InstancePerLifetimeScope">
<summary>
Configure the component so that every dependent component or call to Resolve()
within a single ILifetimeScope gets the same, shared instance. Dependent components in
different lifetime scopes will get different instances.
</summary>
<returns>A registration builder allowing further configuration of the component.</returns>
</member>
<member name="M:Autofac.Builder.IRegistrationBuilder`3.InstancePerMatchingLifetimeScope(System.Object[])">
<summary>
Configure the component so that every dependent component or call to Resolve() within
a ILifetimeScope tagged with any of the provided tags value gets the same, shared instance.
Dependent components in lifetime scopes that are children of the tagged scope will
share the parent's instance. If no appropriately tagged scope can be found in the
hierarchy an <see cref="T:Autofac.Core.DependencyResolutionException"/> is thrown.
</summary>
<param name="lifetimeScopeTag">Tag applied to matching lifetime scopes.</param>
<returns>A registration builder allowing further configuration of the component.</returns>
</member>
<member name="M:Autofac.Builder.IRegistrationBuilder`3.InstancePerOwned``1">
<summary>
Configure the component so that every dependent component or call to Resolve()
within a ILifetimeScope created by an owned instance gets the same, shared instance.
Dependent components in lifetime scopes that are children of the owned instance scope will
share the parent's instance. If no appropriate owned instance scope can be found in the
hierarchy an <see cref="T:Autofac.Core.DependencyResolutionException"/> is thrown.
</summary>
<typeparam name="TService">Service type.</typeparam>
<returns>A registration builder allowing further configuration of the component.</returns>
</member>
<member name="M:Autofac.Builder.IRegistrationBuilder`3.InstancePerOwned(System.Type)">
<summary>
Configure the component so that every dependent component or call to Resolve()
within a ILifetimeScope created by an owned instance gets the same, shared instance.
Dependent components in lifetime scopes that are children of the owned instance scope will
share the parent's instance. If no appropriate owned instance scope can be found in the
hierarchy an <see cref="T:Autofac.Core.DependencyResolutionException"/> is thrown.
</summary>
<param name="serviceType">Service type.</param>
<returns>A registration builder allowing further configuration of the component.</returns>
</member>
<member name="M:Autofac.Builder.IRegistrationBuilder`3.InstancePerOwned``1(System.Object)">
<summary>
Configure the component so that every dependent component or call to Resolve()
within a ILifetimeScope created by an owned instance gets the same, shared instance.
Dependent components in lifetime scopes that are children of the owned instance scope will
share the parent's instance. If no appropriate owned instance scope can be found in the
hierarchy an <see cref="T:Autofac.Core.DependencyResolutionException"/> is thrown.
</summary>
<typeparam name="TService">The service type provided by the component.</typeparam>
<param name="serviceKey">Key to associate with the component.</param>
<returns>A registration builder allowing further configuration of the component.</returns>
</member>
<member name="M:Autofac.Builder.IRegistrationBuilder`3.InstancePerOwned(System.Object,System.Type)">
<summary>
Configure the component so that every dependent component or call to Resolve()
within a ILifetimeScope created by an owned instance gets the same, shared instance.
Dependent components in lifetime scopes that are children of the owned instance scope will
share the parent's instance. If no appropriate owned instance scope can be found in the
hierarchy an <see cref="T:Autofac.Core.DependencyResolutionException"/> is thrown.
</summary>
<param name="serviceKey">Key to associate with the component.</param>
<param name="serviceType">The service type provided by the component.</param>
<returns>A registration builder allowing further configuration of the component.</returns>
</member>
<member name="M:Autofac.Builder.IRegistrationBuilder`3.As``1">
<summary>
Configure the services that the component will provide. The generic parameter(s) to As()
will be exposed as TypedService instances.
</summary>
<typeparam name="TService">Service type.</typeparam>
<returns>A registration builder allowing further configuration of the component.</returns>
</member>
<member name="M:Autofac.Builder.IRegistrationBuilder`3.As``2">
<summary>
Configure the services that the component will provide. The generic parameter(s) to As()
will be exposed as TypedService instances.
</summary>
<typeparam name="TService1">Service type.</typeparam>
<typeparam name="TService2">Service type.</typeparam>
<returns>A registration builder allowing further configuration of the component.</returns>
</member>
<member name="M:Autofac.Builder.IRegistrationBuilder`3.As``3">
<summary>
Configure the services that the component will provide. The generic parameter(s) to As()
will be exposed as TypedService instances.
</summary>
<typeparam name="TService1">Service type.</typeparam>
<typeparam name="TService2">Service type.</typeparam>
<typeparam name="TService3">Service type.</typeparam>
<returns>A registration builder allowing further configuration of the component.</returns>
</member>
<member name="M:Autofac.Builder.IRegistrationBuilder`3.As(System.Type[])">
<summary>
Configure the services that the component will provide.
</summary>
<param name="services">Service types to expose.</param>
<returns>A registration builder allowing further configuration of the component.</returns>
</member>
<member name="M:Autofac.Builder.IRegistrationBuilder`3.As(Autofac.Core.Service[])">
<summary>
Configure the services that the component will provide.
</summary>
<param name="services">Services to expose.</param>
<returns>A registration builder allowing further configuration of the component.</returns>
</member>
<member name="M:Autofac.Builder.IRegistrationBuilder`3.Named(System.String,System.Type)">
<summary>
Provide a textual name that can be used to retrieve the component.
</summary>
<param name="serviceName">Named service to associate with the component.</param>
<param name="serviceType">The service type provided by the component.</param>
<returns>A registration builder allowing further configuration of the component.</returns>
</member>
<member name="M:Autofac.Builder.IRegistrationBuilder`3.Named``1(System.String)">
<summary>
Provide a textual name that can be used to retrieve the component.
</summary>
<param name="serviceName">Named service to associate with the component.</param>
<typeparam name="TService">The service type provided by the component.</typeparam>
<returns>A registration builder allowing further configuration of the component.</returns>
</member>
<member name="M:Autofac.Builder.IRegistrationBuilder`3.Keyed(System.Object,System.Type)">
<summary>
Provide a key that can be used to retrieve the component.
</summary>
<param name="serviceKey">Key to associate with the component.</param>
<param name="serviceType">The service type provided by the component.</param>
<returns>A registration builder allowing further configuration of the component.</returns>
</member>
<member name="M:Autofac.Builder.IRegistrationBuilder`3.Keyed``1(System.Object)">
<summary>
Provide a key that can be used to retrieve the component.
</summary>
<param name="serviceKey">Key to associate with the component.</param>
<typeparam name="TService">The service type provided by the component.</typeparam>
<returns>A registration builder allowing further configuration of the component.</returns>
</member>
<member name="M:Autofac.Builder.IRegistrationBuilder`3.OnPreparing(System.Action{Autofac.Core.PreparingEventArgs})">
<summary>
Add a handler for the Preparing event. This event allows manipulating of the parameters
that will be provided to the component.
</summary>
<param name="handler">The event handler.</param>
<returns>A registration builder allowing further configuration of the component.</returns>
</member>
<member name="M:Autofac.Builder.IRegistrationBuilder`3.OnActivating(System.Action{Autofac.Core.IActivatingEventArgs{`0}})">
<summary>
Add a handler for the Activating event.
</summary>
<param name="handler">The event handler.</param>
<returns>A registration builder allowing further configuration of the component.</returns>
</member>
<member name="M:Autofac.Builder.IRegistrationBuilder`3.OnActivated(System.Action{Autofac.Core.IActivatedEventArgs{`0}})">
<summary>
Add a handler for the Activated event.
</summary>
<param name="handler">The event handler.</param>
<returns>A registration builder allowing further configuration of the component.</returns>
</member>
<member name="M:Autofac.Builder.IRegistrationBuilder`3.PropertiesAutowired(Autofac.PropertyWiringOptions)">
<summary>
Configure the component so that any properties whose types are registered in the
container will be wired to instances of the appropriate service.
</summary>
<param name="options">Set wiring options such as circular dependency wiring support.</param>
<returns>A registration builder allowing further configuration of the component.</returns>
</member>
<member name="M:Autofac.Builder.IRegistrationBuilder`3.WithMetadata(System.String,System.Object)">
<summary>
Associates data with the component.
</summary>
<param name="key">Key by which the data can be located.</param>
<param name="value">The data value.</param>
<returns>A registration builder allowing further configuration of the component.</returns>
</member>
<member name="M:Autofac.Builder.IRegistrationBuilder`3.WithMetadata(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Object}})">
<summary>
Associates data with the component.
</summary>
<param name="properties">The extended properties to associate with the component.</param>
<returns>A registration builder allowing further configuration of the component.</returns>
</member>
<member name="M:Autofac.Builder.IRegistrationBuilder`3.WithMetadata``1(System.Action{Autofac.Builder.MetadataConfiguration{``0}})">
<summary>
Associates data with the component.
</summary>
<typeparam name="TMetadata">A type with properties whose names correspond to the
property names to configure.</typeparam>
<returns>A registration builder allowing further configuration of the component.</returns>
</member>
<member name="P:Autofac.Builder.IRegistrationBuilder`3.ActivatorData">
<summary>
The activator data.
</summary>
</member>
<member name="P:Autofac.Builder.IRegistrationBuilder`3.RegistrationStyle">
<summary>
The registration style.
</summary>
</member>
<member name="P:Autofac.Builder.IRegistrationBuilder`3.RegistrationData">
<summary>
The registration data.
</summary>
</member>
<member name="T:Autofac.Core.Registration.CopyOnWriteRegistry">
<summary>
Delegates registration lookups to a specified registry. When write operations are applied,
initialises a new 'writeable' registry.
</summary>
<remarks>
Safe for concurrent access by multiple readers. Write operations are single-threaded.
</remarks>
</member>
<member name="T:Autofac.Core.IComponentRegistry">
<summary>
Provides component registrations according to the services they provide.
</summary>
</member>
<member name="M:Autofac.Core.IComponentRegistry.TryGetRegistration(Autofac.Core.Service,Autofac.Core.IComponentRegistration@)">
<summary>
Attempts to find a default registration for the specified service.
</summary>
<param name="service">The service to look up.</param>
<param name="registration">The default registration for the service.</param>
<returns>True if a registration exists.</returns>
</member>
<member name="M:Autofac.Core.IComponentRegistry.IsRegistered(Autofac.Core.Service)">
<summary>
Determines whether the specified service is registered.
</summary>
<param name="service">The service to test.</param>
<returns>True if the service is registered.</returns>
</member>
<member name="M:Autofac.Core.IComponentRegistry.Register(Autofac.Core.IComponentRegistration)">
<summary>
Register a component.
</summary>
<param name="registration">The component registration.</param>
</member>
<member name="M:Autofac.Core.IComponentRegistry.Register(Autofac.Core.IComponentRegistration,System.Boolean)">
<summary>
Register a component.
</summary>
<param name="registration">The component registration.</param>
<param name="preserveDefaults">If true, existing defaults for the services provided by the
component will not be changed.</param>
</member>
<member name="M:Autofac.Core.IComponentRegistry.RegistrationsFor(Autofac.Core.Service)">
<summary>
Selects from the available registrations after ensuring that any
dynamic registration sources that may provide <paramref name="service"/>
have been invoked.
</summary>
<param name="service">The service for which registrations are sought.</param>
<returns>Registrations supporting <paramref name="service"/>.</returns>
</member>
<member name="M:Autofac.Core.IComponentRegistry.AddRegistrationSource(Autofac.Core.IRegistrationSource)">
<summary>
Add a registration source that will provide registrations on-the-fly.
</summary>
<param name="source">The source to register.</param>
</member>
<member name="P:Autofac.Core.IComponentRegistry.Registrations">
<summary>
Enumerate the registered components.
</summary>
</member>
<member name="E:Autofac.Core.IComponentRegistry.Registered">
<summary>
Fired whenever a component is registered - either explicitly or via a
<see cref="T:Autofac.Core.IRegistrationSource"/>.
</summary>
</member>
<member name="P:Autofac.Core.IComponentRegistry.Sources">
<summary>
Gets the registration sources that are used by the registry.
</summary>
</member>
<member name="P:Autofac.Core.IComponentRegistry.HasLocalComponents">
<summary>
True if the registry contains its own components; false if it is forwarding
registrations from another external registry.
</summary>
<remarks>This property is used when walking up the scope tree looking for