System.Net.Sockets.AcceptOverlappedAsyncResult.PostCompletion C# (CSharp) Méthode

PostCompletion() private méthode

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