System.Net.Sockets.AcceptOverlappedAsyncResult.PostCompletion C# (CSharp) Method

PostCompletion() private method

private PostCompletion ( int numBytes ) : object
numBytes int
return object
        internal override object PostCompletion(int numBytes)
        {
            _numBytes = numBytes;
            return (SocketError)ErrorCode == SocketError.Success ? _acceptedSocket : null;
        }
    }