// 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 report URIs. /// public interface IFluentCspReportUriDirective : IFluentInterface { /// /// Sets report URIs for the CSP directive. /// /// One or more report URIs. void Uris(params string[] reportUris); } }