Autofac.WebApi2 6.2.0

Prefix Reserved
dotnet add package Autofac.WebApi2 --version 6.2.0
                    
NuGet\Install-Package Autofac.WebApi2 -Version 6.2.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.WebApi2" Version="6.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Autofac.WebApi2" Version="6.2.0" />
                    
Directory.Packages.props
<PackageReference Include="Autofac.WebApi2" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Autofac.WebApi2 --version 6.2.0
                    
#r "nuget: Autofac.WebApi2, 6.2.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.
#:package Autofac.WebApi2@6.2.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Autofac.WebApi2&version=6.2.0
                    
Install as a Cake Addin
#tool nuget:?package=Autofac.WebApi2&version=6.2.0
                    
Install as a Cake Tool

Autofac.WebApi

ASP.NET Web API 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 API you need to reference the Web API integration NuGet package, register your controllers, and set the dependency resolver. You can optionally enable other features as well.

protected void Application_Start()
{
  var builder = new ContainerBuilder();

  // Get your HttpConfiguration.
  var config = GlobalConfiguration.Configuration;

  // Register your Web API controllers.
  builder.RegisterApiControllers(Assembly.GetExecutingAssembly());

  // OPTIONAL: Register the Autofac filter provider.
  builder.RegisterWebApiFilterProvider(config);

  // OPTIONAL: Register the Autofac model binder provider.
  builder.RegisterWebApiModelBinderProvider();

  // Set the dependency resolver to be Autofac.
  var container = builder.Build();
  config.DependencyResolver = new AutofacWebApiDependencyResolver(container);
}

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.

NuGet packages (85)

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

Package Downloads
Autofac.WebApi2.Owin

ASP.NET Web API OWIN integration for Autofac.

iRely.Common

iRely.Common

BumperLane.Tenant.Api.Framework

Framework for BumperLane API sites

Purplelight.Framework.Autofac.Integration.WebApi

Productivity enhancements to Autofac WebApi Integration

TouchConvert.Tenant.Api.V1.Dtos

Data transfer objects for TouchConvert version one APIs.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
6.2.0 251,143 10/25/2025
6.1.1 3,894,553 8/2/2022
6.1.0 1,088,700 11/18/2021
6.0.1 1,882,387 12/1/2020
6.0.0 1,582,829 9/30/2020
5.0.0 3,999,347 1/30/2020
4.3.1 2,962,481 9/5/2019
4.3.0 301,752 8/15/2019
4.2.1 2,189,076 3/26/2019
4.2.0 3,957,555 6/21/2018
4.1.0 4,362,232 8/2/2017
4.0.1 4,795,151 10/24/2016
4.0.0 2,896,936 8/17/2016
4.0.0-rc3-225 4,831 8/3/2016
4.0.0-beta7-215 38,221 9/23/2015
3.4.0 5,326,380 8/17/2014
3.3.3 221,263 7/2/2014
3.3.0 90,371 5/9/2014
3.2.1 40,279 3/27/2014
3.2.0 64,800 1/28/2014
Loading failed