// Copyright (c) André N. Klingsheim. See License.txt in the project root for license information.
using NWebsec.Core.Fluent;
namespace NWebsec.Middleware
{
///
/// Fluent interface to configure options for X-Xss-Protection.
///
public interface IFluentXXssProtectionOptions : IFluentInterface
{
///
/// Configures the header to explicitly disable protection.
///
void Disabled();
///
/// Configures the header to explicitly enable protection.
///
void Enabled();
///
/// Configures the header to explicitly enable protection with block mode.
///
void EnabledWithBlockMode();
}
}