CookieResponseSignInContext Class

 

Context object passed to the ICookieAuthenticationProvider method ResponseSignIn.

Namespace:   Microsoft.Owin.Security.Cookies
Assembly:  Microsoft.Owin.Security.Cookies (in Microsoft.Owin.Security.Cookies.dll)

Inheritance Hierarchy

System.Object
  Microsoft.Owin.Security.Provider.BaseContext<TOptions>
    Microsoft.Owin.Security.Cookies.CookieResponseSignInContext

Syntax

public class CookieResponseSignInContext : BaseContext<CookieAuthenticationOptions>
public ref class CookieResponseSignInContext : BaseContext<CookieAuthenticationOptions^>
type CookieResponseSignInContext = 
    class
        inherit BaseContext<CookieAuthenticationOptions>
    end
Public Class CookieResponseSignInContext
    Inherits BaseContext(Of CookieAuthenticationOptions)

Constructors

Name Description
System_CAPS_pubmethod CookieResponseSignInContext(IOwinContext, CookieAuthenticationOptions, String, ClaimsIdentity, AuthenticationProperties, CookieOptions)

Creates a new instance of the context object.

Properties

Name Description
System_CAPS_pubproperty AuthenticationType

The name of the AuthenticationType creating a cookie.

System_CAPS_pubproperty CookieOptions

The options for creating the outgoing cookie. May be replace or altered during the ResponseSignIn call.

System_CAPS_pubproperty Identity

Contains the claims about to be converted into the outgoing cookie. May be replaced or altered during the ResponseSignIn call.

System_CAPS_pubproperty Options

(Inherited from BaseContext<TOptions>.)

System_CAPS_pubproperty OwinContext

(Inherited from BaseContext<TOptions>.)

System_CAPS_pubproperty Properties

Contains the extra data about to be contained in the outgoing cookie. May be replaced or altered during the ResponseSignIn call.

System_CAPS_pubproperty Request

(Inherited from BaseContext<TOptions>.)

System_CAPS_pubproperty Response

(Inherited from BaseContext<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_protmethod MemberwiseClone()

(Inherited from Object.)

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.Cookies Namespace

Return to top