// 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-Frame-Options.
///
public interface IFluentXFrameOptions : IFluentInterface
{
///
/// Enables the Deny directive.
///
void Deny();
///
/// Enables the SameOrigin directive.
///
void SameOrigin();
}
}