aspnetcore/src/Microsoft.AspNetCore.Mvc.Core/Internal/MvcBuilder.cs

42 lines
1.4 KiB
C#

// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using Microsoft.AspNetCore.Mvc.ApplicationParts;
using Microsoft.Extensions.DependencyInjection;
namespace Microsoft.AspNetCore.Mvc.Internal
{
/// <summary>
/// Allows fine grained configuration of MVC services.
/// </summary>
public class MvcBuilder : IMvcBuilder
{
/// <summary>
/// Initializes a new <see cref="MvcBuilder"/> instance.
/// </summary>
/// <param name="services">The <see cref="IServiceCollection" /> to add services to.</param>
/// <param name="manager">The <see cref="ApplicationPartManager"/> of the application.</param>
public MvcBuilder(IServiceCollection services, ApplicationPartManager manager)
{
if (services == null)
{
throw new ArgumentNullException(nameof(services));
}
if (manager == null)
{
throw new ArgumentNullException(nameof(manager));
}
Services = services;
PartManager = manager;
}
/// <inheritdoc />
public IServiceCollection Services { get; }
/// <inheritdoc />
public ApplicationPartManager PartManager { get; }
}
}