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
<PackageReference Include="Autofac.WebApi2" Version="6.2.0" />
<PackageVersion Include="Autofac.WebApi2" Version="6.2.0" />
<PackageReference Include="Autofac.WebApi2" />
paket add Autofac.WebApi2 --version 6.2.0
#r "nuget: Autofac.WebApi2, 6.2.0"
#:package Autofac.WebApi2@6.2.0
#addin nuget:?package=Autofac.WebApi2&version=6.2.0
#tool nuget:?package=Autofac.WebApi2&version=6.2.0
Autofac.WebApi
ASP.NET Web API integration for Autofac.
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 | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
-
.NETFramework 4.7.2
- Autofac (>= 8.4.0)
- Microsoft.AspNet.WebApi.Core (>= 5.3.0 && < 6.0.0)
- Newtonsoft.Json (>= 13.0.4)
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 |
Release notes are at https://github.com/autofac/Autofac.WebApi/releases