xtd 0.2.0
dns.h
Go to the documentation of this file.
1 #pragma once
5 #include "ip_host_entry.h"
6 #include "../core_export.h"
7 #include "../static.h"
8 #include <vector>
9 
11 namespace xtd {
13  namespace net {
22  class core_export_ dns static_ {
23  public:
25 
30  static std::vector<xtd::net::ip_address> get_host_addresses(const xtd::ustring& host_name_or_address);
31 
35  static xtd::net::ip_host_entry get_host_entry(const ip_address& address);
36 
40  static xtd::net::ip_host_entry get_host_entry(const xtd::ustring& host_name_or_address);
41 
44  static xtd::ustring get_host_name();
46  };
47  }
48 }
Provides an Internet Protocol (IP) address.
Definition: ip_address.h:35
#define static_
This keyword is use to represent a static object. A static object can&#39;t be instantiated (constructors...
Definition: static.h:37
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
Contains xtd::net::ip_host_entry class.
Represents text as a sequence of UTF-8 code units.
Definition: ustring.h:46
Provides simple domain name resolution functionality.
Definition: dns.h:22
Provides a container class for Internet host address information.
Definition: ip_host_entry.h:24