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;

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