Microsoft.Azure.Amqp.AmqpDebug.Dump C# (CSharp) Method

Dump() private method

private Dump ( object source ) : void
source object
return void
        public static void Dump(object source)
        {
#if AMQP_DEBUG
            AmqpDebugImpl.Dump(source);
#endif
        }

Usage Example

Example #1
0
        /// <summary>
        /// Closes the session.
        /// </summary>
        /// <returns>True if the session is closed; false if close is pending.</returns>
        /// <remarks>All links in the session are also closed.</remarks>
        protected override bool CloseInternal()
        {
            if (this.State == AmqpObjectState.OpenReceived)
            {
                this.SendBegin();
            }

            this.CloseLinks(!this.LinkFrameAllowed());
            AmqpDebug.Dump(this);
            AmqpObjectState state = this.SendEnd();

            return(state == AmqpObjectState.End);
        }
All Usage Examples Of Microsoft.Azure.Amqp.AmqpDebug::Dump
AmqpDebug