< Summary

Class:Azure.Messaging.ServiceBus.Amqp.Framing.AmqpRuleFilterCodec
Assembly:Azure.Messaging.ServiceBus
File(s):C:\Git\azure-sdk-for-net\sdk\servicebus\Azure.Messaging.ServiceBus\src\Amqp\Framing\AmqpRuleFilterCodec.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\Azure.Messaging.ServiceBus\src\Amqp\Framing\AmqpRuleFilterCodec.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4using Microsoft.Azure.Amqp;
 5using Microsoft.Azure.Amqp.Framing;
 6
 7namespace Azure.Messaging.ServiceBus.Amqp.Framing
 8{
 9    internal abstract class AmqpRuleFilterCodec : DescribedList
 10    {
 11        protected AmqpRuleFilterCodec(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}