public class GoogleScopedAuthorizeAttribute : AuthorizeAttributeSpecifies that the class or method that this attribute is applied to requires the specified authorization, which can include the incremental addition of Google scopes.
Namespace
Google.Apis.Auth.AspNetCore3Assembly
Google.Apis.Auth.AspNetCore3.dll
Constructors
GoogleScopedAuthorizeAttribute(String[])
public GoogleScopedAuthorizeAttribute(params string[] scopes)Construct an instance of GoogleScopedAuthorizeAttribute.
| Parameter | |
|---|---|
| Name | Description |
scopes |
String[]The Google auth scopes required by the class or method to which this attribute is applied. |
Properties
Scopes
public IReadOnlyList<string> Scopes { get; set; }Get or set the Google auth scopes required by the class or method to which this attribute is applied.
| Property Value | |
|---|---|
| Type | Description |
IReadOnlyList<String> |
|