< Summary

Class:Microsoft.Azure.ServiceBus.Amqp.Framing.AmqpFalseFilterCodec
Assembly:Microsoft.Azure.ServiceBus
File(s):C:\Git\azure-sdk-for-net\sdk\servicebus\Microsoft.Azure.ServiceBus\src\Amqp\Framing\AmqpFalseFilterCodec.cs
Covered lines:0
Uncovered lines:3
Coverable lines:3
Total lines:20
Line coverage:0% (0 of 3)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.cctor()-0%100%
.ctor()-0%100%
ToString()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\servicebus\Microsoft.Azure.ServiceBus\src\Amqp\Framing\AmqpFalseFilterCodec.cs

#LineLine coverage
 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
 4namespace Microsoft.Azure.ServiceBus.Amqp.Framing
 5{
 6    using Azure.Amqp;
 7
 8    sealed class AmqpFalseFilterCodec : AmqpFilterCodec
 9    {
 010        public static readonly string Name = AmqpConstants.Vendor + ":false-filter:list";
 11        public const ulong Code = 0x000001370000008;
 12
 013        public AmqpFalseFilterCodec() : base(Name, Code) { }
 14
 15        public override string ToString()
 16        {
 017            return "false()";
 18        }
 19    }
 20}

Methods/Properties

.cctor()
.ctor()
ToString()