Autofac.Web 6.1.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Autofac.Web --version 6.1.0
NuGet\Install-Package Autofac.Web -Version 6.1.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Autofac.Web" Version="6.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Autofac.Web --version 6.1.0
#r "nuget: Autofac.Web, 6.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Autofac.Web as a Cake Addin
#addin nuget:?package=Autofac.Web&version=6.1.0

// Install Autofac.Web as a Cake Tool
#tool nuget:?package=Autofac.Web&version=6.1.0

Autofac.Web

ASP.NET web forms integration for Autofac.

Build status

Please file issues and pull requests for this package in this repository rather than in the Autofac core repo.

Quick Start

To get Autofac integrated with web forms you need to reference the web forms integration NuGet package, add the modules to web.config, and implement IContainerProviderAccessor on your Global application class.

Add the modules to web.config:

<configuration>
  <system.web>
    <httpModules>
      
      <add
        name="ContainerDisposal"
        type="Autofac.Integration.Web.ContainerDisposalModule, Autofac.Integration.Web"/>
      <add
        name="PropertyInjection"
        type="Autofac.Integration.Web.Forms.PropertyInjectionModule, Autofac.Integration.Web"/>
    </httpModules>
  </system.web>
  <system.webServer>
    
    <modules>
      <add
        name="ContainerDisposal"
        type="Autofac.Integration.Web.ContainerDisposalModule, Autofac.Integration.Web"
        preCondition="managedHandler"/>
      <add
        name="PropertyInjection"
        type="Autofac.Integration.Web.Forms.PropertyInjectionModule, Autofac.Integration.Web"
        preCondition="managedHandler"/>
    </modules>
  </system.webServer>
</configuration>

Implement IContainerProviderAccessor:

public class Global : HttpApplication, IContainerProviderAccessor
{
  // Provider that holds the application container.
  static IContainerProvider _containerProvider;

  // Instance property that will be used by Autofac HttpModules
  // to resolve and inject dependencies.
  public IContainerProvider ContainerProvider
  {
    get { return _containerProvider; }
  }

  protected void Application_Start(object sender, EventArgs e)
  {
    // Build up your application container and register your dependencies.
    var builder = new ContainerBuilder();
    builder.RegisterType<SomeDependency>();
    // ... continue registering dependencies...

    // Once you're done registering things, set the container
    // provider up with your registrations.
    _containerProvider = new ContainerProvider(builder.Build());
  }
}

Check out the documentation for more usage details.

Get Help

Need help with Autofac? We have a documentation site as well as API documentation. We're ready to answer your questions on Stack Overflow or check out the discussion forum.

Product Compatible and additional computed target framework versions.
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.7.2

NuGet packages (12)

Showing the top 5 NuGet packages that depend on Autofac.Web:

Package Downloads
T1.Web

T1 common library

T1.Web.Mvc

T1 common library

YasserSystems.SharedLib

YasserSystems.SharedLib

WebFormsMvp.Autofac

Provides Autofac integration for Web Forms MVP presenter resolution.

WebFormsMVP.Contrib.Autofac

An Autofac-based Presenter Factory which allows custm IoC with WebForms MVP.

GitHub repositories (3)

Showing the top 3 popular GitHub repositories that depend on Autofac.Web:

Repository Stars
OrchardCMS/Orchard
Orchard is a free, open source, community-focused Content Management System built on the ASP.NET MVC platform.
optimajet/WorkflowEngine.NET
WorkflowEngine.NET - component that adds workflow in your application. It can be fully integrated into your application, or be in the form of a specific service (such as a web service).
autofac/Examples
Example projects that consume and demonstrate Autofac IoC functionality and integration
Version Downloads Last updated
6.1.0 172,219 8/1/2022
6.0.0 369,515 10/4/2020
5.0.0 456,300 1/31/2020
4.0.0 1,670,140 1/12/2016
3.2.0 415,840 5/9/2014
3.1.1 5,111 3/27/2014
3.1.0 106,662 7/12/2013
3.0.0 12,947 1/30/2013
3.0.0-beta2 1,287 12/23/2012
3.0.0-beta 1,986 11/1/2012
2.6.3.862 117,911 6/20/2012
2.6.2.859 2,246 6/7/2012
2.6.1.841 8,005 3/5/2012
2.5.2.830 5,815 8/12/2011
2.5.1.827 2,563 7/10/2011
2.4.5.724 9,082 3/12/2011
2.4.4.705 2,623 2/6/2011
2.4.3.700 2,760 1/30/2011
2.4.2.696 4,436 1/24/2011
2.3.2.632 4,054 1/7/2011
2.2.4.900 6,769 1/7/2011