forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCorsPolicy.cs
More file actions
122 lines (109 loc) · 4.24 KB
/
Copy pathCorsPolicy.cs
File metadata and controls
122 lines (109 loc) · 4.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
// 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.Collections.Generic;
using System.Globalization;
using System.Text;
using System.Web.Cors.Properties;
namespace System.Web.Cors
{
/// <summary>
/// Defines the policy for Cross-Origin requests based on the CORS specifications.
/// </summary>
public class CorsPolicy
{
private long? _preflightMaxAge;
/// <summary>
/// Initializes a new instance of the <see cref="CorsPolicy"/> class.
/// </summary>
public CorsPolicy()
{
ExposedHeaders = new List<string>();
Headers = new List<string>();
Methods = new List<string>();
Origins = new List<string>();
}
/// <summary>
/// Gets or sets a value indicating whether to allow all headers.
/// </summary>
public bool AllowAnyHeader { get; set; }
/// <summary>
/// Gets or sets a value indicating whether to allow all methods.
/// </summary>
public bool AllowAnyMethod { get; set; }
/// <summary>
/// Gets or sets a value indicating whether to allow all origins.
/// </summary>
public bool AllowAnyOrigin { get; set; }
/// <summary>
/// Gets the headers that the resource might use and can be exposed.
/// </summary>
public IList<string> ExposedHeaders { get; private set; }
/// <summary>
/// Gets the headers that are supported by the resource.
/// </summary>
public IList<string> Headers { get; private set; }
/// <summary>
/// Gets the methods that are supported by the resource.
/// </summary>
public IList<string> Methods { get; private set; }
/// <summary>
/// Gets the origins that are allowed to access the resource.
/// </summary>
public IList<string> Origins { get; private set; }
/// <summary>
/// Gets or sets the number of seconds the results of a preflight request can be cached.
/// </summary>
public long? PreflightMaxAge
{
get
{
return _preflightMaxAge;
}
set
{
if (value < 0)
{
throw new ArgumentOutOfRangeException("value", SRResources.PreflightMaxAgeOutOfRange);
}
_preflightMaxAge = value;
}
}
/// <summary>
/// Gets or sets a value indicating whether the resource supports user credentials in the request.
/// </summary>
public bool SupportsCredentials { get; set; }
/// <summary>
/// Returns a <see cref="System.String" /> that represents this instance.
/// </summary>
/// <returns>
/// A <see cref="System.String" /> that represents this instance.
/// </returns>
public override string ToString()
{
StringBuilder builder = new StringBuilder();
builder.Append("AllowAnyHeader: ");
builder.Append(AllowAnyHeader);
builder.Append(", AllowAnyMethod: ");
builder.Append(AllowAnyMethod);
builder.Append(", AllowAnyOrigin: ");
builder.Append(AllowAnyOrigin);
builder.Append(", PreflightMaxAge: ");
builder.Append(PreflightMaxAge.HasValue ? PreflightMaxAge.Value.ToString(CultureInfo.InvariantCulture) : "null");
builder.Append(", SupportsCredentials: ");
builder.Append(SupportsCredentials);
builder.Append(", Origins: {");
builder.Append(String.Join(",", Origins));
builder.Append("}");
builder.Append(", Methods: {");
builder.Append(String.Join(",", Methods));
builder.Append("}");
builder.Append(", Headers: {");
builder.Append(String.Join(",", Headers));
builder.Append("}");
builder.Append(", ExposedHeaders: {");
builder.Append(String.Join(",", ExposedHeaders));
builder.Append("}");
return builder.ToString();
}
}
}