< Summary

Class:Microsoft.Azure.ServiceBus.Amqp.Framing.AmqpRuleActionCodec
Assembly:Microsoft.Azure.ServiceBus
File(s):C:\Git\azure-sdk-for-net\sdk\servicebus\Microsoft.Azure.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\Microsoft.Azure.ServiceBus\src\Amqp\Framing\AmqpRuleActionCodec.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
 8    abstract class AmqpRuleActionCodec : DescribedList
 9    {
 10        protected AmqpRuleActionCodec(string name, ulong code)
 011            : base(name, code)
 12        {
 013        }
 14    }
 15}

Methods/Properties

.ctor(...)