| | 1 | | // Copyright (c) Microsoft. All rights reserved. |
| | 2 | | // Licensed under the MIT license. See LICENSE file in the project root for full license information. |
| | 3 | |
|
| | 4 | | namespace Microsoft.Azure.ServiceBus.Amqp.Framing |
| | 5 | | { |
| | 6 | | using Azure.Amqp.Framing; |
| | 7 | | using Azure.Amqp; |
| | 8 | |
|
| | 9 | | abstract class AmqpFilterCodec : DescribedList |
| | 10 | | { |
| | 11 | | protected AmqpFilterCodec(string name, ulong code) |
| 0 | 12 | | : base(name, code) |
| | 13 | | { |
| 0 | 14 | | } |
| | 15 | |
|
| 0 | 16 | | protected override int FieldCount => 0; |
| | 17 | |
|
| | 18 | | protected override void OnEncode(ByteBuffer buffer) |
| | 19 | | { |
| 0 | 20 | | } |
| | 21 | |
|
| | 22 | | protected override void OnDecode(ByteBuffer buffer, int count) |
| | 23 | | { |
| 0 | 24 | | } |
| | 25 | |
|
| | 26 | | protected override int OnValueSize() |
| | 27 | | { |
| 0 | 28 | | return 0; |
| | 29 | | } |
| | 30 | | } |
| | 31 | | } |