Webiant Logo Webiant Logo
  1. No results found.

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

IGeoLookupService.cs

namespace Nop.Services.Directory;

/// 
/// GEO lookup service
/// 
public partial interface IGeoLookupService
{
    /// 
    /// Get country ISO code
    /// 
    /// IP address
    /// Country name
    string LookupCountryIsoCode(string ipAddress);

    /// 
    /// Get country name
    /// 
    /// IP address
    /// Country name
    string LookupCountryName(string ipAddress);
}