CorsOptions.AddPolicy Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
AddPolicy(String, CorsPolicy) |
Adds a new policy. |
AddPolicy(String, Action<CorsPolicyBuilder>) |
Adds a new policy. |
AddPolicy(String, CorsPolicy)
- Source:
- CorsOptions.cs
- Source:
- CorsOptions.cs
- Source:
- CorsOptions.cs
Adds a new policy.
public:
void AddPolicy(System::String ^ name, Microsoft::AspNetCore::Cors::Infrastructure::CorsPolicy ^ policy);
public void AddPolicy (string name, Microsoft.AspNetCore.Cors.Infrastructure.CorsPolicy policy);
member this.AddPolicy : string * Microsoft.AspNetCore.Cors.Infrastructure.CorsPolicy -> unit
Public Sub AddPolicy (name As String, policy As CorsPolicy)
Parameters
- name
- String
The name of the policy.
- policy
- CorsPolicy
The CorsPolicy policy to be added.
Applies to
AddPolicy(String, Action<CorsPolicyBuilder>)
- Source:
- CorsOptions.cs
- Source:
- CorsOptions.cs
- Source:
- CorsOptions.cs
Adds a new policy.
public:
void AddPolicy(System::String ^ name, Action<Microsoft::AspNetCore::Cors::Infrastructure::CorsPolicyBuilder ^> ^ configurePolicy);
public void AddPolicy (string name, Action<Microsoft.AspNetCore.Cors.Infrastructure.CorsPolicyBuilder> configurePolicy);
member this.AddPolicy : string * Action<Microsoft.AspNetCore.Cors.Infrastructure.CorsPolicyBuilder> -> unit
Public Sub AddPolicy (name As String, configurePolicy As Action(Of CorsPolicyBuilder))
Parameters
- name
- String
The name of the policy.
- configurePolicy
- Action<CorsPolicyBuilder>
A delegate which can use a policy builder to build a policy.