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