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

OnDecode() protected method

protected OnDecode ( ByteBuffer buffer, int count ) : void
buffer ByteBuffer
count int
return void
        protected override void OnDecode(ByteBuffer buffer, int count)
        {
            if (count-- > 0)
            {
                this.SaslServerMechanisms = AmqpCodec.DecodeMultiple<AmqpSymbol>(buffer);
            }
        }