GoogleMiddleware Class¶
An ASP.NET Core middleware for authenticating users using Google OAuth 2.0.
- Namespace
Microsoft.AspNetCore.Authentication.Google
- Assemblies
- Microsoft.AspNetCore.Authentication.Google
Inheritance Hierarchy¶
System.Object
Microsoft.AspNetCore.Authentication.AuthenticationMiddleware{Microsoft.AspNetCore.Builder.GoogleOptions}
Microsoft.AspNetCore.Authentication.OAuth.OAuthMiddleware{Microsoft.AspNetCore.Builder.GoogleOptions}
Microsoft.AspNetCore.Authentication.Google.GoogleMiddleware
Syntax¶
public class GoogleMiddleware : OAuthMiddleware<GoogleOptions>
-
class
Microsoft.AspNetCore.Authentication.Google.
GoogleMiddleware
Constructors¶
-
GoogleMiddleware
(Microsoft.AspNetCore.Http.RequestDelegate, Microsoft.AspNetCore.DataProtection.IDataProtectionProvider, Microsoft.Extensions.Logging.ILoggerFactory, System.Text.Encodings.Web.UrlEncoder, Microsoft.Extensions.Options.IOptions<Microsoft.AspNetCore.Authentication.SharedAuthenticationOptions>, Microsoft.Extensions.Options.IOptions<Microsoft.AspNetCore.Builder.GoogleOptions>)¶ Initializes a new
Microsoft.AspNetCore.Authentication.Google.GoogleMiddleware
.Arguments: - next (Microsoft.AspNetCore.Http.RequestDelegate) – The next middleware in the HTTP pipeline to invoke.
- options (Microsoft.Extensions.Options.IOptions<Microsoft.AspNetCore.Builder.GoogleOptions>) – Configuration options for the middleware.
public GoogleMiddleware(RequestDelegate next, IDataProtectionProvider dataProtectionProvider, ILoggerFactory loggerFactory, UrlEncoder encoder, IOptions<SharedAuthenticationOptions> sharedOptions, IOptions<GoogleOptions> options)
-
Methods¶
-
CreateHandler
()¶ Provides the
Microsoft.AspNetCore.Authentication.AuthenticationHandler`1
object for processing authentication-related requests.Return type: Microsoft.AspNetCore.Authentication.AuthenticationHandler<Microsoft.AspNetCore.Builder.GoogleOptions> Returns: An Microsoft.AspNetCore.Authentication.AuthenticationHandler`1
configured with theMicrosoft.AspNetCore.Builder.GoogleOptions
supplied to the constructor.protected override AuthenticationHandler<GoogleOptions> CreateHandler()
-