NetMQ.Core.SessionBase.InCompleted C# (CSharp) Method

InCompleted() public method

This method would be called when a message receive operation has been completed, although here it only throws a NotSupportedException.
This operation is not supported on the SessionBase class.
public InCompleted ( SocketError socketError, int bytesTransferred ) : void
socketError SocketError a SocketError value that indicates whether Success or an error occurred
bytesTransferred int the number of bytes that were transferred
return void
        public virtual void InCompleted(SocketError socketError, int bytesTransferred)
        {
            throw new NotSupportedException();
        }