| | 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; |
| | 7 | |
|
| | 8 | | sealed class AmqpFalseFilterCodec : AmqpFilterCodec |
| | 9 | | { |
| 0 | 10 | | public static readonly string Name = AmqpConstants.Vendor + ":false-filter:list"; |
| | 11 | | public const ulong Code = 0x000001370000008; |
| | 12 | |
|
| 0 | 13 | | public AmqpFalseFilterCodec() : base(Name, Code) { } |
| | 14 | |
|
| | 15 | | public override string ToString() |
| | 16 | | { |
| 0 | 17 | | return "false()"; |
| | 18 | | } |
| | 19 | | } |
| | 20 | | } |