Try your search with a different keyword or use * as a wildcard.
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);
}