Home
last modified time | relevance | path

Searched refs:SendToAsync (Results 1 – 25 of 36) sorted by relevance

12

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Sockets/tests/FunctionalTests/
H A DSocketTestHelper.cs25 … public abstract Task<int> SendToAsync(Socket s, ArraySegment<byte> buffer, EndPoint endpoint); in SendToAsync() method in System.Net.Sockets.Tests.SocketHelperBase
62 … public override Task<int> SendToAsync(Socket s, ArraySegment<byte> buffer, EndPoint endPoint) => in SendToAsync() method in System.Net.Sockets.Tests.SocketHelperArraySync
120 … public override Task<int> SendToAsync(Socket s, ArraySegment<byte> buffer, EndPoint endPoint) => in SendToAsync() method in System.Net.Sockets.Tests.SocketHelperApm
148 … public override Task<int> SendToAsync(Socket s, ArraySegment<byte> buffer, EndPoint endPoint) => in SendToAsync() method in System.Net.Sockets.Tests.SocketHelperTask
149 s.SendToAsync(buffer, SocketFlags.None, endPoint); in SendToAsync()
202 … public override Task<int> SendToAsync(Socket s, ArraySegment<byte> buffer, EndPoint endPoint) => in SendToAsync() method in System.Net.Sockets.Tests.SocketHelperEap
207 return s.SendToAsync(e); in SendToAsync()
258 …public Task<int> SendToAsync(Socket s, ArraySegment<byte> buffer, EndPoint endpoint) => _socketHel… in SendToAsync() method in System.Net.Sockets.Tests.SocketTestHelperBase
H A DArgumentValidationTests.cs701 Assert.Throws<ArgumentNullException>(() => GetSocket().SendToAsync(null)); in SendToAsync_NullAsyncEventArgs_Throws_ArgumentNull()
707 Assert.Throws<ArgumentNullException>(() => GetSocket().SendToAsync(s_eventArgs)); in SendToAsync_NullRemoteEndPoint_Throws_ArgumentNull()
1161 …Assert.Throws<ArgumentNullException>(() => { GetSocket().SendToAsync(new ArraySegment<byte>(null, … in BeginSendTo_NullBuffer_Throws_ArgumentNull()
1168 …Assert.Throws<ArgumentNullException>(() => { GetSocket().SendToAsync(new ArraySegment<byte>(s_buff… in BeginSendTo_NullEndPoint_Throws_ArgumentNull()
1179 …Assert.Throws<ArgumentOutOfRangeException>(() => { GetSocket().SendToAsync(new ArraySegment<byte>(… in BeginSendTo_InvalidOffset_Throws_ArgumentOutOfRange()
1180 …Assert.ThrowsAny<ArgumentException>(() => { GetSocket().SendToAsync(new ArraySegment<byte>(s_buffe… in BeginSendTo_InvalidOffset_Throws_ArgumentOutOfRange()
1192 …Assert.Throws<ArgumentOutOfRangeException>(() => { GetSocket().SendToAsync(new ArraySegment<byte>(… in BeginSendTo_InvalidSize_Throws_ArgumentOutOfRange()
1193 …Assert.ThrowsAny<ArgumentException>(() => { GetSocket().SendToAsync(new ArraySegment<byte>(s_buffe… in BeginSendTo_InvalidSize_Throws_ArgumentOutOfRange()
1194 …Assert.ThrowsAny<ArgumentException>(() => { GetSocket().SendToAsync(new ArraySegment<byte>(s_buffe… in BeginSendTo_InvalidSize_Throws_ArgumentOutOfRange()
H A DDualModeSocketTest.cs1232 bool async = socket.SendToAsync(args); in Socket_SendToAsyncV4IPEndPointToV4Host_Throws()
1265 socket.SendToAsync(args); in Socket_SendToAsyncDnsEndPoint_Throws()
1330 bool async = client.SendToAsync(args); in DualModeSendToAsync_IPEndPointToHost_Helper()
2687 socket.SendToAsync(e); in ClientSend()
H A DDisposedSocketTests.cs587 … Assert.Throws<ObjectDisposedException>(() => GetDisposedSocket().SendToAsync(s_eventArgs)); in SendToAsync_Throws_ObjectDisposed()
H A DSendReceive.cs101 … int sent = await SendToAsync(right, new ArraySegment<byte>(sendBuffer), leftEndpoint); in SendToRecvFrom_Datagram_UDP()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Sockets/src/System/Net/Sockets/
H A DSocketTaskExtensions.cs44 …public static Task<int> SendToAsync(this Socket socket, ArraySegment<byte> buffer, SocketFlags soc… in SendToAsync() method in System.Net.Sockets.SocketTaskExtensions
45 socket.SendToAsync(buffer, socketFlags, remoteEP); in SendToAsync()
H A DSocketAsyncEventArgs.Unix.cs317 …errorCode = handle.AsyncContext.SendToAsync(_buffer, _offset, _count, _socketFlags, _socketAddress… in DoOperationSendTo()
321 …errorCode = handle.AsyncContext.SendToAsync(_bufferListInternal, _socketFlags, _socketAddress.Buff… in DoOperationSendTo()
H A DSocketAsyncContext.Unix.cs1516 …return SendToAsync(buffer, offset, count, flags, null, ref socketAddressLen, out bytesSent, callba… in SendAsync()
1583 …public SocketError SendToAsync(Memory<byte> buffer, int offset, int count, SocketFlags flags, byte… in SendToAsync() method in System.Net.Sockets.SocketAsyncContext
1626 return SendToAsync(buffers, flags, null, ref socketAddressLen, out bytesSent, callback); in SendAsync()
1661 …public SocketError SendToAsync(IList<ArraySegment<byte>> buffers, SocketFlags flags, byte[] socket… in SendToAsync() method in System.Net.Sockets.SocketAsyncContext
H A DSocketTaskExtensions.netfx.cs228 public static Task<int> SendToAsync( in SendToAsync() method in System.Net.Sockets.SocketTaskExtensions
H A DSocket.Tasks.cs463 …internal Task<int> SendToAsync(ArraySegment<byte> buffer, SocketFlags socketFlags, EndPoint remote… in SendToAsync() method in System.Net.Sockets.Socket
H A DSocketPal.Unix.cs1661 …public static SocketError SendToAsync(SafeCloseSocket handle, byte[] buffer, int offset, int count… in SendToAsync() method in System.Net.Sockets.SocketPal
1667 …SocketError socketError = handle.AsyncContext.SendToAsync(buffer, offset, count, socketFlags, sock… in SendToAsync()
H A DSocketPal.Windows.cs913 …public static unsafe SocketError SendToAsync(SafeCloseSocket handle, byte[] buffer, int offset, in… in SendToAsync() method in System.Net.Sockets.SocketPal
H A DSocket.cs2793 …errorCode = SocketPal.SendToAsync(_handle, buffer, offset, size, socketFlags, socketAddress, async… in DoBeginSendTo()
4194 public bool SendToAsync(SocketAsyncEventArgs e) in SendToAsync() method in System.Net.Sockets.Socket
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Ping/src/System/Net/NetworkInformation/
H A DPing.Unix.cs74 …await socket.SendToAsync(new ArraySegment<byte>(sendBuffer), SocketFlags.None, endPoint).Configure… in SendIcmpEchoRequestOverRawSocket()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.Net.Sockets/
H A DSocketTaskExtensions.cs228 public static Task<int> SendToAsync( in SendToAsync() method in System.Net.Sockets.SocketTaskExtensions
H A DSocket.cs2070 public bool SendToAsync (SocketAsyncEventArgs e) in SendToAsync() method in System.Net.Sockets.Socket
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Sockets/ref/
H A DSystem.Net.Sockets.cs329 public bool SendToAsync(System.Net.Sockets.SocketAsyncEventArgs e) { throw null; } in SendToAsync() method in System.Net.Sockets.Socket
516 …public static System.Threading.Tasks.Task<int> SendToAsync(this System.Net.Sockets.Socket socket, … in SendToAsync() method in System.Net.Sockets.SocketTaskExtensions
/dports/devel/php-ice37/ice-3.7.2/csharp/src/Ice/
H A DUdpTransceiver.cs469 completedSynchronously = !_fd.SendToAsync(_writeEventArgs); in startWrite()
/dports/devel/ice37/ice-3.7.2/csharp/src/Ice/
H A DUdpTransceiver.cs469 completedSynchronously = !_fd.SendToAsync(_writeEventArgs); in startWrite()
/dports/devel/py-ice37/ice-3.7.2/csharp/src/Ice/
H A DUdpTransceiver.cs469 completedSynchronously = !_fd.SendToAsync(_writeEventArgs); in startWrite()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/Sockets/
H A DSocket.cs8335 public bool SendToAsync(SocketAsyncEventArgs e) { in SendToAsync() method in System.Net.Sockets.Socket
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/monotouch/
H A DSystem.cs8318 public bool SendToAsync(System.Net.Sockets.SocketAsyncEventArgs e) { throw null; } in SendToAsync() method in System.Net.Sockets.Socket
8554 …public static System.Threading.Tasks.Task<int> SendToAsync(this System.Net.Sockets.Socket socket, … in SendToAsync() method in System.Net.Sockets.SocketTaskExtensions
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monotouch/
H A DSystem.cs8441 public bool SendToAsync(System.Net.Sockets.SocketAsyncEventArgs e) { throw null; } in SendToAsync() method in System.Net.Sockets.Socket
8678 …public static System.Threading.Tasks.Task<int> SendToAsync(this System.Net.Sockets.Socket socket, … in SendToAsync() method in System.Net.Sockets.SocketTaskExtensions
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/monodroid/
H A DSystem.cs8316 public bool SendToAsync(System.Net.Sockets.SocketAsyncEventArgs e) { throw null; } in SendToAsync() method in System.Net.Sockets.Socket
8552 …public static System.Threading.Tasks.Task<int> SendToAsync(this System.Net.Sockets.Socket socket, … in SendToAsync() method in System.Net.Sockets.SocketTaskExtensions
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monodroid/
H A DSystem.cs8437 public bool SendToAsync(System.Net.Sockets.SocketAsyncEventArgs e) { throw null; } in SendToAsync() method in System.Net.Sockets.Socket
8674 …public static System.Threading.Tasks.Task<int> SendToAsync(this System.Net.Sockets.Socket socket, … in SendToAsync() method in System.Net.Sockets.SocketTaskExtensions

12