< Summary

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

Metrics

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

File(s)

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

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4using Microsoft.Azure.Amqp.Framing;
 5
 6namespace Azure.Messaging.ServiceBus.Amqp.Framing
 7{
 8    internal abstract class AmqpRuleActionCodec : DescribedList
 9    {
 10        protected AmqpRuleActionCodec(string name, ulong code)
 011            : base(name, code)
 12        {
 013        }
 14    }
 15}

Methods/Properties

.ctor(...)