Webiant Logo Webiant Logo
  1. No results found.

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

IExternalAuthenticationMethod.cs

using Nop.Services.Plugins;

namespace Nop.Services.Authentication.External;

/// <summary>
/// Represents method for the external authentication
/// </summary>
public partial interface IExternalAuthenticationMethod : IPlugin
{
    /// <summary>
    /// Gets a type of a view component for displaying plugin in public store
    /// </summary>
    /// <returns>View component type</returns>
    Type GetPublicViewComponent();
}