Table of Contents

Interface IAuthenticationWithCredentials

Namespace
Dynamicweb.Security.UserManagement.ExternalAuthentication
Assembly
Dynamicweb.Security.dll
public interface IAuthenticationWithCredentials

Methods

LogOn(string, string)

Makes the login request to the external login platform.
void LogOn(string username, string password)

Parameters

username string
password string

RestoreSession(string, string)

Called when a session is restored based on user information stored in cookies. Usually, this method can simply call the Logon method, unless different behaviour is required.
void RestoreSession(string username, string password)

Parameters

username string
password string
To top