Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

IExternalAuthenticationRegistrar.cs

using Microsoft.AspNetCore.Authentication;

namespace Nop.Services.Authentication.External;

/// 
/// Interface to register (configure) an external authentication service (plugin)
/// 
public partial interface IExternalAuthenticationRegistrar
{
    /// 
    /// Configure
    /// 
    /// Authentication builder
    void Configure(AuthenticationBuilder builder);
}