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

OutCompleted() public method

This method would be called when a message Send operation has been completed, although here it only throws a NotSupportedException.
This operation is not supported on the SessionBase class.
public OutCompleted ( 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 OutCompleted(SocketError socketError, int bytesTransferred)
        {
            throw new NotSupportedException();
        }
    }