Microsoft.Azure.Amqp.Sasl.SaslResponse.OnDecode C# (CSharp) Méthode

OnDecode() protected méthode

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