// Copyright (c) André N. Klingsheim. See License.txt in the project root for license information.
using System.ComponentModel;
namespace NWebsec.Core.HttpHeaders.Configuration
{
///
/// Defines the properties required for CSP directive configuration.
///
public interface ICspDirectiveUnsafeInlineConfiguration : ICspDirectiveBasicConfiguration
{
///
/// Infrastructure. Not intended to be used by your code directly. An attempt to hide this from Intellisense has been
/// made.
///
[EditorBrowsable(EditorBrowsableState.Never)]
bool UnsafeInlineSrc { get; set; }
///
/// Infrastructure. Not intended to be used by your code directly. An attempt to hide this from Intellisense has been
/// made.
///
[EditorBrowsable(EditorBrowsableState.Never)]
string Nonce { get; set; }
}
}