wzp
2021-07-19 e65183d31755a0e5fae4bf428435d2e0fd6afdc5
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
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Autofac.Integration.Mvc</name>
    </assembly>
    <members>
        <member name="T:Autofac.Integration.Mvc.AutofacDependencyResolver">
            <summary>
            Autofac implementation of the <see cref="T:System.Web.Mvc.IDependencyResolver"/> interface.
            </summary>
        </member>
        <member name="M:Autofac.Integration.Mvc.AutofacDependencyResolver.#ctor(Autofac.ILifetimeScope)">
            <summary>
            Initializes a new instance of the <see cref="T:Autofac.Integration.Mvc.AutofacDependencyResolver"/> class.
            </summary>
            <param name="container">The container that nested lifetime scopes will be create from.</param>
        </member>
        <member name="M:Autofac.Integration.Mvc.AutofacDependencyResolver.#ctor(Autofac.ILifetimeScope,System.Action{Autofac.ContainerBuilder})">
            <summary>
            Initializes a new instance of the <see cref="T:Autofac.Integration.Mvc.AutofacDependencyResolver"/> class.
            </summary>
            <param name="container">The container that nested lifetime scopes will be create from.</param>
            <param name="configurationAction">Action on a <see cref="T:Autofac.ContainerBuilder"/>
            that adds component registations visible only in nested lifetime scopes.</param>
        </member>
        <member name="M:Autofac.Integration.Mvc.AutofacDependencyResolver.#ctor(Autofac.ILifetimeScope,Autofac.Integration.Mvc.ILifetimeScopeProvider)">
            <summary>
            Initializes a new instance of the <see cref="T:Autofac.Integration.Mvc.AutofacDependencyResolver"/> class.
            </summary>
            <param name="container">The container that nested lifetime scopes will be create from.</param>
            <param name="lifetimeScopeProvider">A <see cref="T:Autofac.Integration.Mvc.ILifetimeScopeProvider"/> implementation for
            creating new lifetime scopes.</param>
        </member>
        <member name="M:Autofac.Integration.Mvc.AutofacDependencyResolver.#ctor(Autofac.ILifetimeScope,Autofac.Integration.Mvc.ILifetimeScopeProvider,System.Action{Autofac.ContainerBuilder})">
            <summary>
            Initializes a new instance of the <see cref="T:Autofac.Integration.Mvc.AutofacDependencyResolver"/> class.
            </summary>
            <param name="container">The container that nested lifetime scopes will be create from.</param>
            <param name="lifetimeScopeProvider">A <see cref="T:Autofac.Integration.Mvc.ILifetimeScopeProvider"/> implementation for
            creating new lifetime scopes.</param>
            <param name="configurationAction">Action on a <see cref="T:Autofac.ContainerBuilder"/>
            that adds component registations visible only in nested lifetime scopes.</param>
        </member>
        <member name="P:Autofac.Integration.Mvc.AutofacDependencyResolver.Current">
            <summary>
            Gets the Autofac implementation of the dependency resolver.
            </summary>
        </member>
        <member name="P:Autofac.Integration.Mvc.AutofacDependencyResolver.ApplicationContainer">
            <summary>
            Gets the application container that was provided to the constructor.
            </summary>
        </member>
        <member name="P:Autofac.Integration.Mvc.AutofacDependencyResolver.RequestLifetimeScope">
            <summary>
            The lifetime containing components for processing the current HTTP request.
            </summary>
        </member>
        <member name="M:Autofac.Integration.Mvc.AutofacDependencyResolver.SetAutofacDependencyResolverAccessor(System.Func{Autofac.Integration.Mvc.AutofacDependencyResolver})">
            <summary>
            Sets the mechanism used to locate the current Autofac dependency resolver.
            </summary>
            <param name="accessor">
            A <see cref="T:System.Func`1"/> that returns an <see cref="T:Autofac.Integration.Mvc.AutofacDependencyResolver"/>
            based on the current context. Set this to <see langword="null" /> to return to the
            default behavior.
            </param>
        </member>
        <member name="M:Autofac.Integration.Mvc.AutofacDependencyResolver.GetService(System.Type)">
            <summary>
            Get a single instance of a service.
            </summary>
            <param name="serviceType">Type of the service.</param>
            <returns>The single instance if resolved; otherwise, <c>null</c>.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.AutofacDependencyResolver.GetServices(System.Type)">
            <summary>
            Gets all available instances of a services.
            </summary>
            <param name="serviceType">Type of the service.</param>
            <returns>The list of instances if any were resolved; otherwise, an empty list.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.AutofacDependencyResolver.DefaultResolverAccessor">
            <summary>
            Default mechanism for locating the current Autofac service resolver.
            </summary>
            <returns>
            The current <see cref="T:Autofac.Integration.Mvc.AutofacDependencyResolver"/> if it can be located.
            </returns>
            <exception cref="T:System.InvalidOperationException">
            Thrown if the current resolver can't be found.
            </exception>
        </member>
        <member name="T:Autofac.Integration.Mvc.AutofacDependencyResolverResources">
            <summary>
              A strongly-typed resource class, for looking up localized strings, etc.
            </summary>
        </member>
        <member name="P:Autofac.Integration.Mvc.AutofacDependencyResolverResources.ResourceManager">
            <summary>
              Returns the cached ResourceManager instance used by this class.
            </summary>
        </member>
        <member name="P:Autofac.Integration.Mvc.AutofacDependencyResolverResources.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.Integration.Mvc.AutofacDependencyResolverResources.AutofacDependencyResolverNotFound">
            <summary>
              Looks up a localized string similar to The dependency resolver is of type &apos;{0}&apos; but was expected to be of type &apos;{1}&apos;. It also does not appear to be wrapped using DynamicProxy from the Castle Project. This issue could be the result of a change in the DynamicProxy implementation or the use of a different proxy library to wrap the dependency resolver..
            </summary>
        </member>
        <member name="T:Autofac.Integration.Mvc.AutofacFilterProvider">
            <summary>
            Defines a filter provider for filter attributes that performs property injection.
            </summary>
        </member>
        <member name="M:Autofac.Integration.Mvc.AutofacFilterProvider.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Autofac.Integration.Mvc.AutofacFilterProvider"/> class.
            </summary>
            <remarks>
            The <c>false</c> constructor parameter passed to base here ensures that attribute instances are not cached.
            </remarks>
        </member>
        <member name="M:Autofac.Integration.Mvc.AutofacFilterProvider.GetFilters(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionDescriptor)">
            <summary>
            Aggregates the filters from all of the filter providers into one collection.
            </summary>
            <param name="controllerContext">The controller context.</param>
            <param name="actionDescriptor">The action descriptor.</param>
            <returns>
            The collection filters from all of the filter providers with properties injected.
            </returns>
            <exception cref="T:System.ArgumentNullException">
            Thrown if <paramref name="controllerContext" /> is <see langword="null" />.
            </exception>
        </member>
        <member name="T:Autofac.Integration.Mvc.AutofacModelBinderProvider">
            <summary>
            Autofac implementation of the <see cref="T:System.Web.Mvc.IModelBinderProvider"/> interface.
            </summary>
        </member>
        <member name="F:Autofac.Integration.Mvc.AutofacModelBinderProvider.MetadataKey">
            <summary>
            Metadata key for the supported model types.
            </summary>
        </member>
        <member name="M:Autofac.Integration.Mvc.AutofacModelBinderProvider.GetBinder(System.Type)">
            <summary>
            Gets the model binder associated with the provided model type.
            </summary>
            <param name="modelType">Type of the model.</param>
            <returns>An <see cref="T:System.Web.Mvc.IModelBinder"/> instance if found; otherwise, <c>null</c>.</returns>
        </member>
        <member name="T:Autofac.Integration.Mvc.AutofacOverrideFilter">
            <summary>
            Allows other filters to be overriden at the control and action level.
            </summary>
        </member>
        <member name="T:Autofac.Integration.Mvc.AutofacWebTypesModule">
            <summary>
            Dependency injection module that registers abstractions for common
            web application properties.
            </summary>
            <remarks>
            <para>
            This <see cref="T:Autofac.Module"/> is primarily used during
            application startup (in <c>Global.asax</c>) to register
            mappings from commonly referenced contextual application properties
            to their corresponding abstraction.
            </para>
            <para>
            The following mappings are made:
            </para>
            <list type="table">
            <listheader>
            <term>Common Construct</term>
            <description>Abstraction</description>
            </listheader>
            <item>
            <term><c>HttpContext.Current</c></term>
            <description><see cref="T:System.Web.HttpContextBase"/></description>
            </item>
            <item>
            <term><c>HttpContext.Current.Application</c></term>
            <description><see cref="T:System.Web.HttpApplicationStateBase"/></description>
            </item>
            <item>
            <term><c>HttpContext.Current.Request</c></term>
            <description><see cref="T:System.Web.HttpRequestBase"/></description>
            </item>
            <item>
            <term><c>HttpContext.Current.Request.Browser</c></term>
            <description><see cref="T:System.Web.HttpBrowserCapabilitiesBase"/></description>
            </item>
            <item>
            <term><c>HttpContext.Current.Request.Files</c></term>
            <description><see cref="T:System.Web.HttpFileCollectionBase"/></description>
            </item>
            <item>
            <term><c>HttpContext.Current.Request.RequestContext</c></term>
            <description><see cref="T:System.Web.Routing.RequestContext"/></description>
            </item>
            <item>
            <term><c>HttpContext.Current.Response</c></term>
            <description><see cref="T:System.Web.HttpResponseBase"/></description>
            </item>
            <item>
            <term><c>HttpContext.Current.Response.Cache</c></term>
            <description><see cref="T:System.Web.HttpCachePolicyBase"/></description>
            </item>
            <item>
            <term><c>HttpContext.Current.Server</c></term>
            <description><see cref="T:System.Web.HttpServerUtilityBase"/></description>
            </item>
            <item>
            <term><c>HttpContext.Current.Session</c></term>
            <description><see cref="T:System.Web.HttpSessionStateBase"/></description>
            </item>
            <item>
            <term><c>HostingEnvironment.VirtualPathProvider</c></term>
            <description><see cref="T:System.Web.Hosting.VirtualPathProvider"/></description>
            </item>
            </list>
            <para>
            In addition, the <see cref="T:System.Web.Mvc.UrlHelper"/> type is registered
            for construction based on the current <see cref="T:System.Web.Routing.RequestContext"/>.
            </para>
            <para>
            The lifetime for each of these items is one web request.
            </para>
            </remarks>
        </member>
        <member name="M:Autofac.Integration.Mvc.AutofacWebTypesModule.Load(Autofac.ContainerBuilder)">
            <summary>
            Registers web abstractions with dependency injection.
            </summary>
            <param name="builder">
            The <see cref="T:Autofac.ContainerBuilder"/> in which registration
            should take place.
            </param>
            <remarks>
            <para>
            This method registers mappings between common current context-related
            web constructs and their associated abstract counterparts. See
            <see cref="T:Autofac.Integration.Mvc.AutofacWebTypesModule"/> for the complete
            list of mappings that get registered.
            </para>
            </remarks>
        </member>
        <member name="T:Autofac.Integration.Mvc.FilterMetadata">
            <summary>
            Metadata interface for filter registrations.
            </summary>
        </member>
        <member name="P:Autofac.Integration.Mvc.FilterMetadata.ControllerType">
            <summary>
            Gets the type of the controller.
            </summary>
        </member>
        <member name="P:Autofac.Integration.Mvc.FilterMetadata.FilterScope">
            <summary>
            Gets the filter scope.
            </summary>
        </member>
        <member name="P:Autofac.Integration.Mvc.FilterMetadata.MethodInfo">
            <summary>
            Gets the method info.
            </summary>
        </member>
        <member name="P:Autofac.Integration.Mvc.FilterMetadata.Order">
            <summary>
            Gets the order in which the filter is applied.
            </summary>
        </member>
        <member name="T:Autofac.Integration.Mvc.RegistrationExtensionsResources">
            <summary>
              A strongly-typed resource class, for looking up localized strings, etc.
            </summary>
        </member>
        <member name="P:Autofac.Integration.Mvc.RegistrationExtensionsResources.ResourceManager">
            <summary>
              Returns the cached ResourceManager instance used by this class.
            </summary>
        </member>
        <member name="P:Autofac.Integration.Mvc.RegistrationExtensionsResources.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.Integration.Mvc.RegistrationExtensionsResources.InvalidActionExpress">
            <summary>
              Looks up a localized string similar to The action method Expression is invalid. It should consist only of a Method call to a controller action method..
            </summary>
        </member>
        <member name="P:Autofac.Integration.Mvc.RegistrationExtensionsResources.InvalidModelBinderType">
            <summary>
              Looks up a localized string similar to Type list may not be empty or contain all null values..
            </summary>
        </member>
        <member name="P:Autofac.Integration.Mvc.RegistrationExtensionsResources.MustBeAssignableToFilterType">
            <summary>
              Looks up a localized string similar to The type &apos;{0}&apos; must be assignable to the filter type &apos;{1}&apos;..
            </summary>
        </member>
        <member name="T:Autofac.Integration.Mvc.RequestLifetimeScopeProvider">
            <summary>
            Creates and disposes HTTP request based lifetime scopes.
            </summary>
            <remarks>
            The provider is notified when a HTTP request ends by the <see cref="T:Autofac.Integration.Mvc.RequestLifetimeHttpModule"/>.
            </remarks>
        </member>
        <member name="M:Autofac.Integration.Mvc.RequestLifetimeScopeProvider.#ctor(Autofac.ILifetimeScope)">
            <summary>
            Initializes a new instance of the <see cref="T:Autofac.Integration.Mvc.RequestLifetimeScopeProvider"/> class.
            </summary>
            <param name="container">The parent container, usually the application container.</param>
        </member>
        <member name="P:Autofac.Integration.Mvc.RequestLifetimeScopeProvider.ApplicationContainer">
            <summary>
            Gets the global, application-wide container.
            </summary>
        </member>
        <member name="M:Autofac.Integration.Mvc.RequestLifetimeScopeProvider.GetLifetimeScope(System.Action{Autofac.ContainerBuilder})">
            <summary>
            Gets a nested lifetime scope that services can be resolved from.
            </summary>
            <param name="configurationAction">
            A configuration action that will execute during lifetime scope creation.
            </param>
            <returns>A new or existing nested lifetime scope.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RequestLifetimeScopeProvider.EndLifetimeScope">
            <summary>
            Ends the current HTTP request lifetime scope.
            </summary>
        </member>
        <member name="M:Autofac.Integration.Mvc.RequestLifetimeScopeProvider.GetLifetimeScopeCore(System.Action{Autofac.ContainerBuilder})">
            <summary>
            Gets a lifetime scope for the current HTTP request. This method can be overridden
            to alter the way that the life time scope is constructed.
            </summary>
            <param name="configurationAction">
            A configuration action that will execute during lifetime scope creation.
            </param>
            <returns>A new lifetime scope for the current HTTP request.</returns>
        </member>
        <member name="T:Autofac.Integration.Mvc.ExtensibleActionInvoker">
            <summary>
            Injects services from the container into the ASP.NET MVC invocation pipeline.
            This is a Async Controller Action Invoker which can be used for both async and non-async scenarios
            </summary>
            <remarks>
            <para>
            Action methods can include parameters that will be resolved from the
            container, along with regular parameters.
            </para>
            </remarks>
        </member>
        <member name="F:Autofac.Integration.Mvc.ExtensibleActionInvoker._propertySelector">
            <summary>
            If set, this is used to determine which model properties are injected.
            </summary>
        </member>
        <member name="M:Autofac.Integration.Mvc.ExtensibleActionInvoker.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Autofac.Integration.Mvc.ExtensibleActionInvoker"/> class.
            </summary>
        </member>
        <member name="M:Autofac.Integration.Mvc.ExtensibleActionInvoker.#ctor(Autofac.Core.IPropertySelector)">
            <summary>
            Initializes a new instance of the <see cref="T:Autofac.Integration.Mvc.ExtensibleActionInvoker"/> class.
            </summary>
            <param name="propertySelector">The inject property selector.</param>
        </member>
        <member name="M:Autofac.Integration.Mvc.ExtensibleActionInvoker.GetParameterValue(System.Web.Mvc.ControllerContext,System.Web.Mvc.ParameterDescriptor)">
            <summary>
            Gets the parameter value.
            </summary>
            <param name="controllerContext">The controller context.</param><param name="parameterDescriptor">The parameter descriptor.</param>
            <returns>
            The parameter value.
            </returns>
            <exception cref="T:System.ArgumentNullException">
            Thrown if <paramref name="parameterDescriptor" /> is <see langword="null" />.
            </exception>
        </member>
        <member name="T:Autofac.Integration.Mvc.ILifetimeScopeProvider">
            <summary>
            Implementors are able to control the creation of nested lifetime scopes.
            </summary>
        </member>
        <member name="M:Autofac.Integration.Mvc.ILifetimeScopeProvider.GetLifetimeScope(System.Action{Autofac.ContainerBuilder})">
            <summary>
            Gets a nested lifetime scope that services can be resolved from.
            </summary>
            <param name="configurationAction">
            A configuration action that will execute during lifetime scope creation.
            </param>
            <returns>A new or existing nested lifetime scope.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.ILifetimeScopeProvider.EndLifetimeScope">
            <summary>
            Ends the current lifetime scope.
            </summary>
        </member>
        <member name="P:Autofac.Integration.Mvc.ILifetimeScopeProvider.ApplicationContainer">
            <summary>
            Gets the global, application-wide container.
            </summary>
        </member>
        <member name="T:Autofac.Integration.Mvc.ModelBinderTypeAttribute">
            <summary>
            Indicates what types a model binder supports.
            </summary>
        </member>
        <member name="P:Autofac.Integration.Mvc.ModelBinderTypeAttribute.TargetTypes">
            <summary>
            Gets the target types.
            </summary>
        </member>
        <member name="M:Autofac.Integration.Mvc.ModelBinderTypeAttribute.#ctor(System.Type[])">
            <summary>
            Initializes a new instance of the <see cref="T:Autofac.Integration.Mvc.ModelBinderTypeAttribute"/> class.
            </summary>
            <param name="targetTypes">The target types.</param>
        </member>
        <member name="M:Autofac.Integration.Mvc.ModelBinderTypeAttribute.#ctor(System.Type)">
            <summary>
            Initializes a new instance of the <see cref="T:Autofac.Integration.Mvc.ModelBinderTypeAttribute"/> class.
            </summary>
            <param name="targetType">The target type.</param>
        </member>
        <member name="T:Autofac.Integration.Mvc.PreApplicationStartCode">
            <summary>
            Container class for the ASP.NET application startup method.
            </summary>
        </member>
        <member name="M:Autofac.Integration.Mvc.PreApplicationStartCode.Start">
            <summary>
            Performs ASP.NET application startup logic early in the pipeline.
            </summary>
        </member>
        <member name="T:Autofac.Integration.Mvc.RegistrationExtensions">
            <summary>
            Extends <see cref="T:Autofac.ContainerBuilder"/> with methods to support ASP.NET MVC.
            </summary>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.AsActionFilterFor``1(Autofac.Builder.IRegistrationBuilder{System.Object,Autofac.Builder.IConcreteActivatorData,Autofac.Builder.SingleRegistrationStyle},System.Int32)">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.IActionFilter"/> for the specified controller.
            </summary>
            <typeparam name="TController">The type of the controller.</typeparam>
            <param name="registration">The registration.</param>
            <param name="order">The order in which the filter is applied.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.AsActionFilterFor``1(Autofac.Builder.IRegistrationBuilder{System.Object,Autofac.Builder.IConcreteActivatorData,Autofac.Builder.SingleRegistrationStyle},System.Linq.Expressions.Expression{System.Action{``0}},System.Int32)">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.IActionFilter"/> for the specified controller action.
            </summary>
            <typeparam name="TController">The type of the controller.</typeparam>
            <param name="registration">The registration.</param>
            <param name="actionSelector">The action selector.</param>
            <param name="order">The order in which the filter is applied.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.AsActionFilterOverrideFor``1(Autofac.Builder.IRegistrationBuilder{System.Object,Autofac.Builder.IConcreteActivatorData,Autofac.Builder.SingleRegistrationStyle},System.Int32)">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.IActionFilter"/> override for the specified controller.
            </summary>
            <typeparam name="TController">The type of the controller.</typeparam>
            <param name="registration">The registration.</param>
            <param name="order">The order in which the filter is applied.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.AsActionFilterOverrideFor``1(Autofac.Builder.IRegistrationBuilder{System.Object,Autofac.Builder.IConcreteActivatorData,Autofac.Builder.SingleRegistrationStyle},System.Linq.Expressions.Expression{System.Action{``0}},System.Int32)">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.IActionFilter"/> override for the specified controller action.
            </summary>
            <typeparam name="TController">The type of the controller.</typeparam>
            <param name="registration">The registration.</param>
            <param name="actionSelector">The action selector.</param>
            <param name="order">The order in which the filter is applied.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.AsAuthenticationFilterFor``1(Autofac.Builder.IRegistrationBuilder{System.Object,Autofac.Builder.IConcreteActivatorData,Autofac.Builder.SingleRegistrationStyle},System.Int32)">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.Filters.IAuthenticationFilter"/> for the specified controller.
            </summary>
            <typeparam name="TController">The type of the controller.</typeparam>
            <param name="registration">The registration.</param>
            <param name="order">The order in which the filter is applied.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.AsAuthenticationFilterFor``1(Autofac.Builder.IRegistrationBuilder{System.Object,Autofac.Builder.IConcreteActivatorData,Autofac.Builder.SingleRegistrationStyle},System.Linq.Expressions.Expression{System.Action{``0}},System.Int32)">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.Filters.IAuthenticationFilter"/> for the specified controller action.
            </summary>
            <typeparam name="TController">The type of the controller.</typeparam>
            <param name="registration">The registration.</param>
            <param name="actionSelector">The action selector.</param>
            <param name="order">The order in which the filter is applied.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.AsAuthenticationFilterOverrideFor``1(Autofac.Builder.IRegistrationBuilder{System.Object,Autofac.Builder.IConcreteActivatorData,Autofac.Builder.SingleRegistrationStyle},System.Int32)">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.Filters.IAuthenticationFilter"/> override for the specified controller.
            </summary>
            <typeparam name="TController">The type of the controller.</typeparam>
            <param name="registration">The registration.</param>
            <param name="order">The order in which the filter is applied.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.AsAuthenticationFilterOverrideFor``1(Autofac.Builder.IRegistrationBuilder{System.Object,Autofac.Builder.IConcreteActivatorData,Autofac.Builder.SingleRegistrationStyle},System.Linq.Expressions.Expression{System.Action{``0}},System.Int32)">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.Filters.IAuthenticationFilter"/> override for the specified controller action.
            </summary>
            <typeparam name="TController">The type of the controller.</typeparam>
            <param name="registration">The registration.</param>
            <param name="actionSelector">The action selector.</param>
            <param name="order">The order in which the filter is applied.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.AsAuthorizationFilterFor``1(Autofac.Builder.IRegistrationBuilder{System.Object,Autofac.Builder.IConcreteActivatorData,Autofac.Builder.SingleRegistrationStyle},System.Int32)">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.IAuthorizationFilter"/> for the specified controller.
            </summary>
            <typeparam name="TController">The type of the controller.</typeparam>
            <param name="registration">The registration.</param>
            <param name="order">The order in which the filter is applied.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.AsAuthorizationFilterFor``1(Autofac.Builder.IRegistrationBuilder{System.Object,Autofac.Builder.IConcreteActivatorData,Autofac.Builder.SingleRegistrationStyle},System.Linq.Expressions.Expression{System.Action{``0}},System.Int32)">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.IAuthorizationFilter"/> for the specified controller action.
            </summary>
            <typeparam name="TController">The type of the controller.</typeparam>
            <param name="registration">The registration.</param>
            <param name="actionSelector">The action selector.</param>
            <param name="order">The order in which the filter is applied.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.AsAuthorizationFilterOverrideFor``1(Autofac.Builder.IRegistrationBuilder{System.Object,Autofac.Builder.IConcreteActivatorData,Autofac.Builder.SingleRegistrationStyle},System.Int32)">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.IAuthorizationFilter"/> override for the specified controller.
            </summary>
            <typeparam name="TController">The type of the controller.</typeparam>
            <param name="registration">The registration.</param>
            <param name="order">The order in which the filter is applied.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.AsAuthorizationFilterOverrideFor``1(Autofac.Builder.IRegistrationBuilder{System.Object,Autofac.Builder.IConcreteActivatorData,Autofac.Builder.SingleRegistrationStyle},System.Linq.Expressions.Expression{System.Action{``0}},System.Int32)">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.IAuthorizationFilter"/> override for the specified controller action.
            </summary>
            <typeparam name="TController">The type of the controller.</typeparam>
            <param name="registration">The registration.</param>
            <param name="actionSelector">The action selector.</param>
            <param name="order">The order in which the filter is applied.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.AsExceptionFilterFor``1(Autofac.Builder.IRegistrationBuilder{System.Object,Autofac.Builder.IConcreteActivatorData,Autofac.Builder.SingleRegistrationStyle},System.Int32)">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.IExceptionFilter"/> for the specified controller.
            </summary>
            <typeparam name="TController">The type of the controller.</typeparam>
            <param name="registration">The registration.</param>
            <param name="order">The order in which the filter is applied.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.AsExceptionFilterFor``1(Autofac.Builder.IRegistrationBuilder{System.Object,Autofac.Builder.IConcreteActivatorData,Autofac.Builder.SingleRegistrationStyle},System.Linq.Expressions.Expression{System.Action{``0}},System.Int32)">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.IExceptionFilter"/> for the specified controller action.
            </summary>
            <typeparam name="TController">The type of the controller.</typeparam>
            <param name="registration">The registration.</param>
            <param name="actionSelector">The action selector.</param>
            <param name="order">The order in which the filter is applied.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.AsExceptionFilterOverrideFor``1(Autofac.Builder.IRegistrationBuilder{System.Object,Autofac.Builder.IConcreteActivatorData,Autofac.Builder.SingleRegistrationStyle},System.Int32)">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.IExceptionFilter"/> override for the specified controller.
            </summary>
            <typeparam name="TController">The type of the controller.</typeparam>
            <param name="registration">The registration.</param>
            <param name="order">The order in which the filter is applied.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.AsExceptionFilterOverrideFor``1(Autofac.Builder.IRegistrationBuilder{System.Object,Autofac.Builder.IConcreteActivatorData,Autofac.Builder.SingleRegistrationStyle},System.Linq.Expressions.Expression{System.Action{``0}},System.Int32)">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.IExceptionFilter"/> override for the specified controller action.
            </summary>
            <typeparam name="TController">The type of the controller.</typeparam>
            <param name="registration">The registration.</param>
            <param name="actionSelector">The action selector.</param>
            <param name="order">The order in which the filter is applied.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.AsModelBinderForTypes``3(Autofac.Builder.IRegistrationBuilder{``0,``1,``2},System.Type[])">
            <summary>
            Sets a provided registration to act as an <see cref="T:System.Web.Mvc.IModelBinder"/>
            for the specified list of types.
            </summary>
            <param name="registration">
            The registration for the type or object instance that will act as
            the model binder.
            </param>
            <param name="types">
            The list of model <see cref="T:System.Type"/> for which the <paramref name="registration" />
            should be a model binder.
            </param>
            <typeparam name="TLimit">
            Registration limit type.
            </typeparam>
            <typeparam name="TActivatorData">
            Activator data type.
            </typeparam>
            <typeparam name="TRegistrationStyle">
            Registration style.
            </typeparam>
            <returns>
            An Autofac registration that can be modified as needed.
            </returns>
            <exception cref="T:System.ArgumentNullException">
            Thrown if <paramref name="registration" /> or <paramref name="types" /> is <see langword="null" />.
            </exception>
            <exception cref="T:System.ArgumentException">
            Thrown if <paramref name="types" /> is empty or contains all <see langword="null" />
            values.
            </exception>
            <remarks>
            <para>
            The declarative mechanism of registering model binders with Autofac
            is through use of <see cref="M:Autofac.Integration.Mvc.RegistrationExtensions.RegisterModelBinders(Autofac.ContainerBuilder,System.Reflection.Assembly[])"/>
            and the <see cref="T:Autofac.Integration.Mvc.ModelBinderTypeAttribute"/>.
            This method is an imperative alternative.
            </para>
            <para>
            The two mechanisms are mutually exclusive. If you register a model
            binder using <see cref="M:Autofac.Integration.Mvc.RegistrationExtensions.RegisterModelBinders(Autofac.ContainerBuilder,System.Reflection.Assembly[])"/>
            and register the same model binder with this method, the results
            are not automatically merged together - standard dependency
            registration/resolution rules will be used to manage the conflict.
            </para>
            <para>
            Any <see langword="null" /> values provided in <paramref name="types" />
            will be removed prior to registration.
            </para>
            </remarks>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.AsResultFilterFor``1(Autofac.Builder.IRegistrationBuilder{System.Object,Autofac.Builder.IConcreteActivatorData,Autofac.Builder.SingleRegistrationStyle},System.Int32)">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.IResultFilter"/> for the specified controller.
            </summary>
            <typeparam name="TController">The type of the controller.</typeparam>
            <param name="registration">The registration.</param>
            <param name="order">The order in which the filter is applied.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.AsResultFilterFor``1(Autofac.Builder.IRegistrationBuilder{System.Object,Autofac.Builder.IConcreteActivatorData,Autofac.Builder.SingleRegistrationStyle},System.Linq.Expressions.Expression{System.Action{``0}},System.Int32)">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.IResultFilter"/> for the specified controller action.
            </summary>
            <typeparam name="TController">The type of the controller.</typeparam>
            <param name="registration">The registration.</param>
            <param name="actionSelector">The action selector.</param>
            <param name="order">The order in which the filter is applied.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.AsResultFilterOverrideFor``1(Autofac.Builder.IRegistrationBuilder{System.Object,Autofac.Builder.IConcreteActivatorData,Autofac.Builder.SingleRegistrationStyle},System.Int32)">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.IResultFilter"/> override for the specified controller.
            </summary>
            <typeparam name="TController">The type of the controller.</typeparam>
            <param name="registration">The registration.</param>
            <param name="order">The order in which the filter is applied.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.AsResultFilterOverrideFor``1(Autofac.Builder.IRegistrationBuilder{System.Object,Autofac.Builder.IConcreteActivatorData,Autofac.Builder.SingleRegistrationStyle},System.Linq.Expressions.Expression{System.Action{``0}},System.Int32)">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.IResultFilter"/> override for the specified controller action.
            </summary>
            <typeparam name="TController">The type of the controller.</typeparam>
            <param name="registration">The registration.</param>
            <param name="actionSelector">The action selector.</param>
            <param name="order">The order in which the filter is applied.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.CacheInSession``3(Autofac.Builder.IRegistrationBuilder{``0,``1,``2})">
            <summary>
            Cache instances in the web session. This implies external ownership (disposal is not
            available.) All dependencies must also have external ownership.
            </summary>
            <remarks>
            It is strongly recommended that components cached per-session do not take dependencies on
            other services.
            </remarks>
            <typeparam name="TLimit">Registration limit type.</typeparam>
            <typeparam name="TSingleRegistrationStyle">Registration style.</typeparam>
            <typeparam name="TActivatorData">Activator data type.</typeparam>
            <param name="registration">The registration to configure.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.InjectActionInvoker``3(Autofac.Builder.IRegistrationBuilder{``0,``1,``2})">
            <summary>
            Inject an IActionInvoker into the controller's ActionInvoker property.
            </summary>
            <typeparam name="TLimit">Limit type.</typeparam>
            <typeparam name="TActivatorData">Activator data.</typeparam>
            <typeparam name="TRegistrationStyle">Registration style.</typeparam>
            <param name="registrationBuilder">The registration builder.</param>
            <returns>A registration builder.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.InjectActionInvoker``3(Autofac.Builder.IRegistrationBuilder{``0,``1,``2},Autofac.Core.Service)">
            <summary>
            Inject an IActionInvoker into the controller's ActionInvoker property.
            </summary>
            <typeparam name="TLimit">Limit type.</typeparam>
            <typeparam name="TActivatorData">Activator data.</typeparam>
            <typeparam name="TRegistrationStyle">Registration style.</typeparam>
            <param name="registrationBuilder">The registration builder.</param>
            <param name="actionInvokerService">Service used to resolve the action invoker.</param>
            <returns>A registration builder.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.InstancePerHttpRequest``3(Autofac.Builder.IRegistrationBuilder{``0,``1,``2},System.Object[])">
            <summary>
            Share one instance of the component within the context of a single
            HTTP request.
            </summary>
            <typeparam name="TLimit">Registration limit type.</typeparam>
            <typeparam name="TStyle">Registration style.</typeparam>
            <typeparam name="TActivatorData">Activator data type.</typeparam>
            <param name="registration">The registration to configure.</param>
            <param name="lifetimeScopeTags">Additional tags applied for matching lifetime scopes.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
            <exception cref="T:System.ArgumentNullException">
            Thrown if <paramref name="registration" /> is <see langword="null" />.
            </exception>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.OverrideActionFilterFor``1(Autofac.ContainerBuilder)">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.Filters.IOverrideFilter"/> for the specified controller.
            </summary>
            <param name="builder">The container builder.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.OverrideActionFilterFor``1(Autofac.ContainerBuilder,System.Linq.Expressions.Expression{System.Action{``0}})">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.Filters.IOverrideFilter"/> for the specified controller action.
            </summary>
            <param name="builder">The container builder.</param>
            <param name="actionSelector">The action selector.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.OverrideAuthenticationFilterFor``1(Autofac.ContainerBuilder)">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.Filters.IOverrideFilter"/> for the specified controller.
            </summary>
            <param name="builder">The container builder.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.OverrideAuthenticationFilterFor``1(Autofac.ContainerBuilder,System.Linq.Expressions.Expression{System.Action{``0}})">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.Filters.IOverrideFilter"/> for the specified controller action.
            </summary>
            <param name="builder">The container builder.</param>
            <param name="actionSelector">The action selector.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.OverrideAuthorizationFilterFor``1(Autofac.ContainerBuilder)">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.Filters.IOverrideFilter"/> for the specified controller.
            </summary>
            <param name="builder">The container builder.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.OverrideAuthorizationFilterFor``1(Autofac.ContainerBuilder,System.Linq.Expressions.Expression{System.Action{``0}})">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.Filters.IOverrideFilter"/> for the specified controller action.
            </summary>
            <param name="builder">The container builder.</param>
            <param name="actionSelector">The action selector.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.OverrideExceptionFilterFor``1(Autofac.ContainerBuilder)">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.Filters.IOverrideFilter"/> for the specified controller.
            </summary>
            <param name="builder">The container builder.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.OverrideExceptionFilterFor``1(Autofac.ContainerBuilder,System.Linq.Expressions.Expression{System.Action{``0}})">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.Filters.IOverrideFilter"/> for the specified controller action.
            </summary>
            <param name="builder">The container builder.</param>
            <param name="actionSelector">The action selector.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.OverrideResultFilterFor``1(Autofac.ContainerBuilder)">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.Filters.IOverrideFilter"/> for the specified controller.
            </summary>
            <param name="builder">The container builder.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.OverrideResultFilterFor``1(Autofac.ContainerBuilder,System.Linq.Expressions.Expression{System.Action{``0}})">
            <summary>
            Sets the provided registration to act as an <see cref="T:System.Web.Mvc.Filters.IOverrideFilter"/> for the specified controller action.
            </summary>
            <param name="builder">The container builder.</param>
            <param name="actionSelector">The action selector.</param>
            <returns>A registration builder allowing further configuration of the component.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.RegisterControllers(Autofac.ContainerBuilder,System.Reflection.Assembly[])">
            <summary>
            Register types that implement IController in the provided assemblies.
            </summary>
            <param name="builder">The container builder.</param>
            <param name="controllerAssemblies">Assemblies to scan for controllers.</param>
            <returns>Registration builder allowing the controller components to be customised.</returns>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.RegisterFilterProvider(Autofac.ContainerBuilder)">
            <summary>
            Registers the <see cref="T:Autofac.Integration.Mvc.AutofacFilterProvider"/>.
            </summary>
            <param name="builder">The container builder.</param>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.RegisterModelBinderProvider(Autofac.ContainerBuilder)">
            <summary>
            Registers the <see cref="T:Autofac.Integration.Mvc.AutofacModelBinderProvider"/>.
            </summary>
            <param name="builder">The container builder.</param>
        </member>
        <member name="M:Autofac.Integration.Mvc.RegistrationExtensions.RegisterModelBinders(Autofac.ContainerBuilder,System.Reflection.Assembly[])">
            <summary>
            Register types that implement <see cref="T:System.Web.Mvc.IModelBinder"/> in the provided assemblies
            and have a <see cref="T:Autofac.Integration.Mvc.ModelBinderTypeAttribute"/>.
            </summary>
            <param name="builder">The container builder.</param>
            <param name="modelBinderAssemblies">Assemblies to scan for model binders.</param>
            <returns>A registration builder.</returns>
            <exception cref="T:System.ArgumentNullException">
            Thrown if <paramref name="builder" /> or <paramref name="modelBinderAssemblies" /> is <see langword="null" />.
            </exception>
            <remarks>
            <para>
            The declarative mechanism of registering model binders with Autofac
            is through use of this method and the
            <see cref="T:Autofac.Integration.Mvc.ModelBinderTypeAttribute"/>.
            If you would like more imperative control over registration for your
            model binders, see the <see cref="M:Autofac.Integration.Mvc.RegistrationExtensions.AsModelBinderForTypes``3(Autofac.Builder.IRegistrationBuilder{``0,``1,``2},System.Type[])"/>
            method.
            </para>
            <para>
            The two mechanisms are mutually exclusive. If you register a model
            binder using <see cref="M:Autofac.Integration.Mvc.RegistrationExtensions.AsModelBinderForTypes``3(Autofac.Builder.IRegistrationBuilder{``0,``1,``2},System.Type[])"/>
            and register the same model binder with this method, the results
            are not automatically merged together - standard dependency
            registration/resolution rules will be used to manage the conflict.
            </para>
            <para>
            This method only registers types that implement <see cref="T:System.Web.Mvc.IModelBinder"/>
            and are marked with the <see cref="T:Autofac.Integration.Mvc.ModelBinderTypeAttribute"/>.
            The model binder must have the attribute because the
            <see cref="T:Autofac.Integration.Mvc.AutofacModelBinderProvider"/> uses
            the associated metadata - from the attribute(s) - to resolve the
            binder based on model type. If there aren't any attributes, there
            won't be any metadata, so the model binder will be technically
            registered but will never actually be resolved.
            </para>
            <para>
            If your model is not marked with the attribute, or if you don't want
            to use attributes, use the
            <see cref="M:Autofac.Integration.Mvc.RegistrationExtensions.AsModelBinderForTypes``3(Autofac.Builder.IRegistrationBuilder{``0,``1,``2},System.Type[])"/>
            extension instead.
            </para>
            </remarks>
        </member>
        <member name="T:Autofac.Integration.Mvc.RequestLifetimeHttpModule">
            <summary>
            An <see cref="T:System.Web.IHttpModule"/> and <see cref="T:Autofac.Integration.Mvc.ILifetimeScopeProvider"/> implementation 
            that creates a nested lifetime scope for each HTTP request.
            </summary>
        </member>
        <member name="P:Autofac.Integration.Mvc.RequestLifetimeHttpModule.LifetimeScopeProvider">
            <summary>
            Gets the lifetime scope provider that should be notified when a HTTP request ends.
            </summary>
        </member>
        <member name="M:Autofac.Integration.Mvc.RequestLifetimeHttpModule.Init(System.Web.HttpApplication)">
            <summary>
            Initializes a module and prepares it to handle requests.
            </summary>
            <param name="context">An <see cref="T:System.Web.HttpApplication"/> that provides access to the 
            methods, properties, and events common to all application objects within an ASP.NET application</param>
            <exception cref="T:System.ArgumentNullException">
            Thrown if <paramref name="context" /> is <see langword="null" />.
            </exception>
        </member>
        <member name="M:Autofac.Integration.Mvc.RequestLifetimeHttpModule.Dispose">
            <summary>
            Disposes of the resources (other than memory) used by the module that implements <see cref="T:System.Web.IHttpModule"/>.
            </summary>
        </member>
        <member name="T:Autofac.Integration.Mvc.RequestLifetimeScopeProviderResources">
            <summary>
              A strongly-typed resource class, for looking up localized strings, etc.
            </summary>
        </member>
        <member name="P:Autofac.Integration.Mvc.RequestLifetimeScopeProviderResources.ResourceManager">
            <summary>
              Returns the cached ResourceManager instance used by this class.
            </summary>
        </member>
        <member name="P:Autofac.Integration.Mvc.RequestLifetimeScopeProviderResources.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.Integration.Mvc.RequestLifetimeScopeProviderResources.HttpContextNotAvailable">
            <summary>
              Looks up a localized string similar to The request lifetime scope cannot be created because the HttpContext is not available..
            </summary>
        </member>
        <member name="P:Autofac.Integration.Mvc.RequestLifetimeScopeProviderResources.NullLifetimeScopeReturned">
            <summary>
              Looks up a localized string similar to The &apos;GetLifetimeScopeCore&apos; method implementation on &apos;{0}&apos; returned a null ILifetimeScope instance. When overridden this method must return a valid ILifetimeScope instance for the current HTTP request..
            </summary>
        </member>
        <member name="T:Autofac.Integration.Mvc.ViewRegistrationSource">
            <summary>
            A registration source for building view registrations.
            </summary>
            <remarks>
            Supports view registrations for <see cref="T:System.Web.Mvc.WebViewPage"/>, <see cref="T:System.Web.Mvc.ViewPage"/>,
            <see cref="T:System.Web.Mvc.ViewMasterPage"/> and <see cref="T:System.Web.Mvc.ViewUserControl"/> derived types.
            </remarks>
        </member>
        <member name="M:Autofac.Integration.Mvc.ViewRegistrationSource.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>
        </member>
        <member name="P:Autofac.Integration.Mvc.ViewRegistrationSource.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>
    </members>
</doc>