System.Net.Sockets.NetworkStream.AwaitableSocketAsyncEventArgs.ReceiveAsync C# (CSharp) Метод

ReceiveAsync() публичный Метод

Initiates a receive operation on the associated socket.
public ReceiveAsync ( ) : AwaitableSocketAsyncEventArgs
Результат AwaitableSocketAsyncEventArgs
            public AwaitableSocketAsyncEventArgs ReceiveAsync()
            {
                if (!Socket.ReceiveAsync(this))
                {
                    _continuation = s_completedSentinel;
                }
                return this;
            }