22 lines
1000 B
C#
22 lines
1000 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Owin.Security.Providers.Slack.Provider
|
|
{
|
|
public interface ISlackAuthenticationProvider
|
|
{
|
|
/// <summary>
|
|
/// Invoked whenever Slack succesfully authenticates a user
|
|
/// </summary>
|
|
/// <param name="context">Contains information about the login session as well as the user <see cref="System.Security.Claims.ClaimsIdentity"/>.</param>
|
|
/// <returns>A <see cref="Task"/> representing the completed operation.</returns>
|
|
Task Authenticated(SlackAuthenticatedContext context);
|
|
|
|
/// <summary>
|
|
/// Invoked prior to the <see cref="System.Security.Claims.ClaimsIdentity"/> being saved in a local cookie and the browser being redirected to the originally requested URL.
|
|
/// </summary>
|
|
/// <param name="context"></param>
|
|
/// <returns>A <see cref="Task"/> representing the completed operation.</returns>
|
|
Task ReturnEndpoint(SlackReturnEndpointContext context);
|
|
}
|
|
}
|