< Summary

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

Metrics

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

File(s)

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

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4using Microsoft.Azure.Amqp.Encoding;
 5
 6namespace Azure.Messaging.ServiceBus.Amqp
 7{
 8    internal static class ManagementConstants
 9    {
 10        public const string Microsoft = "com.microsoft";
 11
 12        public static class Request
 13        {
 14            public const string Operation = "operation";
 15            public const string AssociatedLinkName = "associated-link-name";
 16        }
 17
 18        public static class Response
 19        {
 20            public const string StatusCode = "statusCode";
 21            public const string StatusDescription = "statusDescription";
 22            public const string ErrorCondition = "errorCondition";
 23        }
 24
 25        public static class Operations
 26        {
 27            public const string RenewLockOperation = Microsoft + ":renew-lock";
 28            public const string ReceiveBySequenceNumberOperation = Microsoft + ":receive-by-sequence-number";
 29            public const string UpdateDispositionOperation = Microsoft + ":update-disposition";
 30            public const string RenewSessionLockOperation = Microsoft + ":renew-session-lock";
 31            public const string SetSessionStateOperation = Microsoft + ":set-session-state";
 32            public const string GetSessionStateOperation = Microsoft + ":get-session-state";
 33            public const string PeekMessageOperation = Microsoft + ":peek-message";
 34            public const string AddRuleOperation = Microsoft + ":add-rule";
 35            public const string RemoveRuleOperation = Microsoft + ":remove-rule";
 36            public const string EnumerateRulesOperation = Microsoft + ":enumerate-rules";
 37            public const string ScheduleMessageOperation = Microsoft + ":schedule-message";
 38            public const string CancelScheduledMessageOperation = Microsoft + ":cancel-scheduled-message";
 39        }
 40
 41        public static class Properties
 42        {
 043            public static readonly MapKey ServerTimeout = new MapKey(Microsoft + ":server-timeout");
 044            public static readonly MapKey TrackingId = new MapKey(Microsoft + ":tracking-id");
 45
 046            public static readonly MapKey SessionState = new MapKey("session-state");
 047            public static readonly MapKey LockToken = new MapKey("lock-token");
 048            public static readonly MapKey LockTokens = new MapKey("lock-tokens");
 049            public static readonly MapKey SequenceNumbers = new MapKey("sequence-numbers");
 050            public static readonly MapKey Expirations = new MapKey("expirations");
 051            public static readonly MapKey Expiration = new MapKey("expiration");
 052            public static readonly MapKey SessionId = new MapKey("session-id");
 053            public static readonly MapKey MessageId = new MapKey("message-id");
 054            public static readonly MapKey PartitionKey = new MapKey("partition-key");
 055            public static readonly MapKey ViaPartitionKey = new MapKey("via-partition-key");
 56
 057            public static readonly MapKey ReceiverSettleMode = new MapKey("receiver-settle-mode");
 058            public static readonly MapKey Message = new MapKey("message");
 059            public static readonly MapKey Messages = new MapKey("messages");
 060            public static readonly MapKey DispositionStatus = new MapKey("disposition-status");
 061            public static readonly MapKey PropertiesToModify = new MapKey("properties-to-modify");
 062            public static readonly MapKey DeadLetterReason = new MapKey("deadletter-reason");
 063            public static readonly MapKey DeadLetterDescription = new MapKey("deadletter-description");
 64
 065            public static readonly MapKey FromSequenceNumber = new MapKey("from-sequence-number");
 066            public static readonly MapKey MessageCount = new MapKey("message-count");
 67
 068            public static readonly MapKey Skip = new MapKey("skip");
 069            public static readonly MapKey Top = new MapKey("top");
 070            public static readonly MapKey Rules = new MapKey("rules");
 071            public static readonly MapKey RuleName = new MapKey("rule-name");
 072            public static readonly MapKey RuleDescription = new MapKey("rule-description");
 073            public static readonly MapKey RuleCreatedAt = new MapKey("rule-created-at");
 074            public static readonly MapKey SqlRuleFilter = new MapKey("sql-filter");
 075            public static readonly MapKey SqlRuleAction = new MapKey("sql-rule-action");
 076            public static readonly MapKey CorrelationRuleFilter = new MapKey("correlation-filter");
 077            public static readonly MapKey Expression = new MapKey("expression");
 078            public static readonly MapKey CorrelationId = new MapKey("correlation-id");
 079            public static readonly MapKey To = new MapKey("to");
 080            public static readonly MapKey ReplyTo = new MapKey("reply-to");
 081            public static readonly MapKey Label = new MapKey("label");
 082            public static readonly MapKey ReplyToSessionId = new MapKey("reply-to-session-id");
 083            public static readonly MapKey ContentType = new MapKey("content-type");
 084            public static readonly MapKey CorrelationRuleFilterProperties = new MapKey("properties");
 85        }
 86    }
 87}

Methods/Properties

.cctor()