IDnsQuery.cs 206 B

1234567891011
  1. using System.Net;
  2. using System.Threading.Tasks;
  3. namespace STUN.DnsClients
  4. {
  5. public interface IDnsQuery
  6. {
  7. public Task<IPAddress?> QueryAsync(string? host);
  8. public IPAddress? Query(string? host);
  9. }
  10. }