forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathICorsPolicyProvider.cs
More file actions
24 lines (22 loc) · 888 Bytes
/
Copy pathICorsPolicyProvider.cs
File metadata and controls
24 lines (22 loc) · 888 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using System.Web.Cors;
namespace System.Web.Http.Cors
{
/// <summary>
/// Provides an abstraction for getting the <see cref="CorsPolicy"/>.
/// </summary>
public interface ICorsPolicyProvider
{
/// <summary>
/// Gets the <see cref="CorsPolicy"/>.
/// </summary>
/// <param name="request">The request.</param>
/// <param name="cancellationToken">The token to monitor for cancellation requests.</param>
/// <returns>The <see cref="CorsPolicy"/>.</returns>
Task<CorsPolicy> GetCorsPolicyAsync(HttpRequestMessage request, CancellationToken cancellationToken);
}
}