Amqp.Link.SendFlow C# (CSharp) Method

SendFlow() private method

private SendFlow ( uint deliveryCount, uint credit, bool drain ) : void
deliveryCount uint
credit uint
drain bool
return void
        internal void SendFlow(uint deliveryCount, uint credit, bool drain)
        {
            Flow flow = new Flow() { Handle = this.handle, DeliveryCount = deliveryCount, LinkCredit = credit, Drain = drain };
            this.session.SendFlow(flow);
        }