IAuthenticationManager.SignOut Method

 

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

Overload List

Name Description
System_CAPS_pubmethod SignOut(AuthenticationProperties, String[])

Add information to the response environment that will cause the appropriate authentication middleware to revoke any claims identity associated the the caller. The exact method varies.

System_CAPS_pubmethod SignOut(String[])

Add information to the response environment that will cause the appropriate authentication middleware to revoke any claims identity associated the the caller. The exact method varies.

See Also

IAuthenticationManager Interface
Microsoft.Owin.Security Namespace

Return to top

IAuthenticationManager.SignOut Method (AuthenticationProperties, String[])

Add information to the response environment that will cause the appropriate authentication middleware to revoke any claims identity associated the the caller. The exact method varies.

Syntax

void SignOut(
    AuthenticationProperties properties,
    params string[] authenticationTypes
)
void SignOut(
    AuthenticationProperties^ properties,
    ... array<String^>^ authenticationTypes
)
abstract SignOut : 
        properties:AuthenticationProperties *
        [<ParamArrayAttribute>] authenticationTypes:string[] -> unit
Sub SignOut (
    properties As AuthenticationProperties,
    ParamArray authenticationTypes As String()
)

Parameters

  • authenticationTypes
    Type: System.String[]

    Identifies which middleware should perform the work to sign out. Multiple authentication types may be provided to clear out more than one cookie at a time, or to clear cookies and redirect to an external single-sign out url.

Return to top

IAuthenticationManager.SignOut Method (String[])

Add information to the response environment that will cause the appropriate authentication middleware to revoke any claims identity associated the the caller. The exact method varies.

Syntax

void SignOut(
    params string[] authenticationTypes
)
void SignOut(
    ... array<String^>^ authenticationTypes
)
abstract SignOut : 
        [<ParamArrayAttribute>] authenticationTypes:string[] -> unit
Sub SignOut (
    ParamArray authenticationTypes As String()
)

Parameters

  • authenticationTypes
    Type: System.String[]

    Identifies which middleware should perform the work to sign out. Multiple authentication types may be provided to clear out more than one cookie at a time, or to clear cookies and redirect to an external single-sign out url.

Return to top