Microsoft.Azure.Amqp.Sasl.SaslResponse.OnDecode C# (CSharp) Method

OnDecode() protected method

protected OnDecode ( System.ByteBuffer buffer, int count ) : void
buffer System.ByteBuffer
count int
return void
        protected override void OnDecode(ByteBuffer buffer, int count)
        {
            if (count-- > 0)
            {
                this.Response = AmqpCodec.DecodeBinary(buffer);
            }
        }