xtd 0.2.0
socket_async_operation.hpp
Go to the documentation of this file.
1
4#pragma once
5#include "../../enum.hpp"
6
8#undef accept
10
12namespace xtd {
14 namespace net {
16 namespace sockets {
54 }
55 }
56}
57
61};
Contains enum_ and enum_ut_ keywords.
std::vector< std::pair< enum_t, xtd::string > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition enum_collection.hpp:24
socket_async_operation
The type of asynchronous socket operation most recently performed with this context object.
Definition socket_async_operation.hpp:32
@ receive_message_from
A socket receive_message_from operation.
Definition socket_async_operation.hpp:46
@ send
A socket send operation.
Definition socket_async_operation.hpp:48
@ none
none of the socket operations.
Definition socket_async_operation.hpp:34
@ accept
A socket accept operation.
Definition socket_async_operation.hpp:36
@ send_packets
A socket send_packets operation.
Definition socket_async_operation.hpp:50
@ disconnect
A socket disconnect operation.
Definition socket_async_operation.hpp:40
@ receive_from
A socket receive_from operation.
Definition socket_async_operation.hpp:44
@ connect
A socket connect operation.
Definition socket_async_operation.hpp:38
@ send_to
A socket send_to operation.
Definition socket_async_operation.hpp:52
@ receive
A socket receive operation.
Definition socket_async_operation.hpp:42
The xtd::net::sockets namespace provides a managed implementation of the Berkeley Sockets interface f...
Definition address_family.hpp:16
The xtd::net namespace provides a simple programming interface for many of the protocols used on netw...
Definition cookie_exception.hpp:10
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8
Provides the registration struct for enumerations.
Definition enum_register.hpp:38