CorsOptions.GetPolicy(String) Method

Definition

Gets the policy based on the name

public:
 Microsoft::AspNetCore::Cors::Infrastructure::CorsPolicy ^ GetPolicy(System::String ^ name);
public Microsoft.AspNetCore.Cors.Infrastructure.CorsPolicy GetPolicy (string name);
public Microsoft.AspNetCore.Cors.Infrastructure.CorsPolicy? GetPolicy (string name);
member this.GetPolicy : string -> Microsoft.AspNetCore.Cors.Infrastructure.CorsPolicy
Public Function GetPolicy (name As String) As CorsPolicy

Parameters

name
String

The name of the policy to lookup.

Returns

The CorsPolicy if the policy was added.null otherwise.

Applies to