AuthorizationOptions.GetPolicy(String) Method

Definition

Returns the policy for the specified name, or null if a policy with the name does not exist.

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

Parameters

name
String

The name of the policy to return.

Returns

The policy for the specified name, or null if a policy with the name does not exist.

Applies to