File: Features\ServiceProvidersFeature.cs
Web Access
Project: src\src\Http\Http\src\Microsoft.AspNetCore.Http.csproj (Microsoft.AspNetCore.Http)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.AspNetCore.Http.Features;
 
/// <summary>
/// Default implementation for <see cref="IServiceProvidersFeature"/>.
/// </summary>
public class ServiceProvidersFeature : IServiceProvidersFeature
{
    /// <inheritdoc />
    public IServiceProvider RequestServices { get; set; } = default!;
}