< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-0%100%
get_FieldCount()-0%100%
OnEncode(...)-0%100%
OnDecode(...)-0%100%
OnValueSize()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\servicebus\Microsoft.Azure.ServiceBus\src\Amqp\Framing\AmqpFilterCodec.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.Framing;
 7    using Azure.Amqp;
 8
 9    abstract class AmqpFilterCodec : DescribedList
 10    {
 11        protected AmqpFilterCodec(string name, ulong code)
 012            : base(name, code)
 13        {
 014        }
 15
 016        protected override int FieldCount => 0;
 17
 18        protected override void OnEncode(ByteBuffer buffer)
 19        {
 020        }
 21
 22        protected override void OnDecode(ByteBuffer buffer, int count)
 23        {
 024        }
 25
 26        protected override int OnValueSize()
 27        {
 028            return 0;
 29        }
 30    }
 31}