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