Table of Contents

Interface ILogout

Namespace
Tenduke.Core.Auth
Assembly
Tenduke.Core.dll

Logs the user out of their OpenID Connect session.

public interface ILogout

Remarks

The implementation of logout should be chosen at the point where the SDK is initialized, based on the capabilities of the specific OpenID Provider in use.

Methods

LogoutAsync()

Logout the user via OpenID Connect, using the provided browser interface (if any).

Task LogoutAsync()

Returns

Task

LogoutAsync(CancellationToken)

Logout the user via OpenID Connect, using the provided browser interface (if any).

Task LogoutAsync(CancellationToken cancellationToken)

Parameters

cancellationToken CancellationToken

The cancellation token to cancel the operation.

Returns

Task