Microsoft.Azure.Amqp.Framing.End.OnDecode C# (CSharp) 메소드

OnDecode() 보호된 메소드

protected OnDecode ( ByteBuffer buffer, int count ) : void
buffer ByteBuffer
count int
리턴 void
        protected override void OnDecode(ByteBuffer buffer, int count)
        {
            if (count-- > 0)
            {
                this.Error = AmqpCodec.DecodeKnownType<Error>(buffer);
            }
        }