<PackageReference Include="System.Net.Sockets" Version="4.1.0" />
API Differences between 4.1.0 and 4.0.10-beta-23123
22 Additions
0 Removals
System.Net.Sockets
-
public struct SocketReceiveFromResult
-
public struct SocketReceiveMessageFromResult
-
public static class SocketTaskExtensions
- public static Task<Socket> AcceptAsync(this Socket socket)
- public static Task<Socket> AcceptAsync(this Socket socket, Socket acceptSocket)
- public static Task ConnectAsync(this Socket socket, EndPoint remoteEndPoint)
- public static Task ConnectAsync(this Socket socket, IPAddress address, int port)
- public static Task ConnectAsync(this Socket socket, IPAddress[] addresses, int port)
- public static Task ConnectAsync(this Socket socket, string host, int port)
- public static Task<int> ReceiveAsync(this Socket socket, ArraySegment<byte> buffer, SocketFlags socketFlags)
- public static Task<int> ReceiveAsync(this Socket socket, IList<ArraySegment<byte>> buffers, SocketFlags socketFlags)
- public static Task<SocketReceiveFromResult> ReceiveFromAsync(this Socket socket, ArraySegment<byte> buffer, SocketFlags socketFlags, EndPoint remoteEndPoint)
- public static Task<SocketReceiveMessageFromResult> ReceiveMessageFromAsync(this Socket socket, ArraySegment<byte> buffer, SocketFlags socketFlags, EndPoint remoteEndPoint)
- public static Task<int> SendAsync(this Socket socket, ArraySegment<byte> buffer, SocketFlags socketFlags)
- public static Task<int> SendAsync(this Socket socket, IList<ArraySegment<byte>> buffers, SocketFlags socketFlags)
- public static Task<int> SendToAsync(this Socket socket, ArraySegment<byte> buffer, SocketFlags socketFlags, EndPoint remoteEndPoint)