mirror of
https://github.com/netfun2000/ip2region.git
synced 2026-02-27 09:44:31 +08:00
14 lines
218 B
C#
14 lines
218 B
C#
using System.Net;
|
|
|
|
namespace IP2Region.Net.XDB;
|
|
|
|
public interface ISearcher
|
|
{
|
|
string? Search(string ipStr);
|
|
|
|
string? Search(IPAddress ipAddress);
|
|
|
|
string? Search(uint ipAddress);
|
|
|
|
int IoCount { get; }
|
|
} |