Microsoft.Azure.Amqp.AsyncIO.AsyncWriter.IssueClose C# (CSharp) Method

IssueClose() public method

public IssueClose ( ) : void
return void
            public void IssueClose()
            {
                lock (this.SyncRoot)
                {
                    this.closed = true;
                    if (this.writing)
                    {
                        return;
                    }
                }

                this.transport.SafeClose();
            }