37 lines
1.2 KiB
C#
37 lines
1.2 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.HttpsPolicy;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Microsoft.AspNetCore.Builder
|
|
{
|
|
/// <summary>
|
|
/// Extension methods for the HSTS middleware.
|
|
/// </summary>
|
|
public static class HstsServicesExtensions
|
|
{
|
|
/// <summary>
|
|
/// Adds HSTS services.
|
|
/// </summary>
|
|
/// <param name="services">The <see cref="IServiceCollection"/> for adding services.</param>
|
|
/// <param name="configureOptions">A delegate to configure the <see cref="HstsOptions"/>.</param>
|
|
/// <returns></returns>
|
|
public static IServiceCollection AddHsts(this IServiceCollection services, Action<HstsOptions> configureOptions)
|
|
{
|
|
if (services == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(services));
|
|
}
|
|
if (configureOptions == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(configureOptions));
|
|
}
|
|
|
|
services.Configure(configureOptions);
|
|
return services;
|
|
}
|
|
}
|
|
}
|