| File: Events\RemoteSignoutContext.cs | Web Access |
| Project: src\aspnetcore\src\Security\Authentication\OpenIdConnect\src\Microsoft.AspNetCore.Authentication.OpenIdConnect.csproj (Microsoft.AspNetCore.Authentication.OpenIdConnect) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Microsoft.AspNetCore.Http; using Microsoft.IdentityModel.Protocols.OpenIdConnect; namespace Microsoft.AspNetCore.Authentication.OpenIdConnect; /// <summary> /// A context for <see cref="OpenIdConnectEvents.RemoteSignOut(RemoteSignOutContext)"/> event. /// </summary> public class RemoteSignOutContext : RemoteAuthenticationContext<OpenIdConnectOptions> { /// <summary> /// Initializes a new instance of <see cref="RemoteSignOutContext"/>. /// </summary> /// <param name="context">The HTTP request context.</param> /// <param name="scheme">The authentication scheme.</param> /// <param name="options">The OpenID Connect authentication options.</param> /// <param name="message">The remote sign-out message sent by the identity provider.</param> public RemoteSignOutContext(HttpContext context, AuthenticationScheme scheme, OpenIdConnectOptions options, OpenIdConnectMessage? message) : base(context, scheme, options, new AuthenticationProperties()) => ProtocolMessage = message; /// <summary> /// Gets or sets the <see cref="OpenIdConnectMessage"/>. /// </summary> public OpenIdConnectMessage? ProtocolMessage { get; set; } }