RabbitMQ.Client.Impl.AutorecoveringModel.Close C# (CSharp) Method

Close() public method

public Close ( ushort replyCode, string replyText, bool abort ) : void
replyCode ushort
replyText string
abort bool
return void
        public void Close(ushort replyCode, string replyText, bool abort)
        {
            try
            {
                m_delegate.Close(replyCode, replyText, abort);
            }
            finally
            {
                m_connection.UnregisterModel(this);
            }
        }

Same methods

AutorecoveringModel::Close ( ) : void
AutorecoveringModel::Close ( ShutdownEventArgs reason, bool abort ) : void
AutorecoveringModel::Close ( ushort replyCode, string replyText ) : void
AutorecoveringModel