You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
791 B
27 lines
791 B
// Copyright (c) André N. Klingsheim. See License.txt in the project root for license information.
|
|
|
|
using NWebsec.Core.Fluent;
|
|
|
|
namespace NWebsec.Middleware
|
|
{
|
|
/// <summary>
|
|
/// Fluent interface to configure options for X-Xss-Protection.
|
|
/// </summary>
|
|
public interface IFluentXXssProtectionOptions : IFluentInterface
|
|
{
|
|
/// <summary>
|
|
/// Configures the header to explicitly disable protection.
|
|
/// </summary>
|
|
void Disabled();
|
|
|
|
/// <summary>
|
|
/// Configures the header to explicitly enable protection.
|
|
/// </summary>
|
|
void Enabled();
|
|
|
|
/// <summary>
|
|
/// Configures the header to explicitly enable protection with block mode.
|
|
/// </summary>
|
|
void EnabledWithBlockMode();
|
|
}
|
|
}
|