Share via


AuthorizationCodeReceivedNotification Class

 

This Notification can be used to be informed when an 'AuthorizationCode' is received over the OpenIdConnect protocol.

Namespace:   Microsoft.Owin.Security.Notifications
Assembly:  Microsoft.Owin.Security.OpenIdConnect (in Microsoft.Owin.Security.OpenIdConnect.dll)

Inheritance Hierarchy

System.Object
  Microsoft.Owin.Security.Provider.BaseContext<TOptions>
    Microsoft.Owin.Security.Notifications.BaseNotification<TOptions>
      Microsoft.Owin.Security.Notifications.AuthorizationCodeReceivedNotification

Syntax

public class AuthorizationCodeReceivedNotification : BaseNotification<OpenIdConnectAuthenticationOptions>
public ref class AuthorizationCodeReceivedNotification : BaseNotification<OpenIdConnectAuthenticationOptions^>
type AuthorizationCodeReceivedNotification = 
    class
        inherit BaseNotification<OpenIdConnectAuthenticationOptions>
    end
Public Class AuthorizationCodeReceivedNotification
    Inherits BaseNotification(Of OpenIdConnectAuthenticationOptions)

Constructors

Name Description
System_CAPS_pubmethod AuthorizationCodeReceivedNotification(IOwinContext, OpenIdConnectAuthenticationOptions)

Creates a AuthorizationCodeReceivedNotification

Properties

Name Description
System_CAPS_pubproperty AuthenticationTicket

Gets or sets the AuthenticationTicket

System_CAPS_pubproperty Code

Gets or sets the 'code'.

System_CAPS_pubproperty HandledResponse

(Inherited from BaseNotification<TOptions>.)

System_CAPS_pubproperty JwtSecurityToken

Gets or sets the JwtSecurityToken that was received in the id_token + code OpenIdConnectRequest.

System_CAPS_pubproperty Options

(Inherited from BaseContext<TOptions>.)

System_CAPS_pubproperty OwinContext

(Inherited from BaseContext<TOptions>.)

System_CAPS_pubproperty ProtocolMessage

Gets or sets the OpenIdConnectMessage.

System_CAPS_pubproperty RedirectUri

Gets or sets the 'redirect_uri'.

System_CAPS_pubproperty Request

(Inherited from BaseContext<TOptions>.)

System_CAPS_pubproperty Response

(Inherited from BaseContext<TOptions>.)

System_CAPS_pubproperty Skipped

(Inherited from BaseNotification<TOptions>.)

System_CAPS_pubproperty State

(Inherited from BaseNotification<TOptions>.)

Methods

Name Description
System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_pubmethod HandleResponse()

Discontinue all processing for this request and return to the client. The caller is responsible for generating the full response.(Inherited from BaseNotification<TOptions>.)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod SkipToNextMiddleware()

Discontinue processing the request in the current middleware and pass control to the next one.(Inherited from BaseNotification<TOptions>.)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Microsoft.Owin.Security.Notifications Namespace

Return to top