< Summary

Class:Microsoft.Azure.ServiceBus.Constants
Assembly:Microsoft.Azure.ServiceBus
File(s):C:\Git\azure-sdk-for-net\sdk\servicebus\Microsoft.Azure.ServiceBus\src\Constants.cs
Covered lines:7
Uncovered lines:0
Coverable lines:7
Total lines:51
Line coverage:100% (7 of 7)
Covered branches:0
Total branches:0

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\servicebus\Microsoft.Azure.ServiceBus\src\Constants.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
 5{
 6    using System;
 7
 8    static class Constants
 9    {
 10        public const int MaxMessageIdLength = 128;
 11
 12        public const int MaxPartitionKeyLength = 128;
 13
 14        public const int MaxSessionIdLength = 128;
 15
 16        public const string PathDelimiter = @"/";
 17
 18        public const int RuleNameMaximumLength = 50;
 19
 20        public const int MaximumSqlFilterStatementLength = 1024;
 21
 22        public const int MaximumSqlRuleActionStatementLength = 1024;
 23
 24        public const int DefaultClientPrefetchCount = 0;
 25
 26        public const int MaxDeadLetterReasonLength = 4096;
 27
 228        public static readonly long DefaultLastPeekedSequenceNumber = 0;
 29
 230        public static readonly TimeSpan DefaultOperationTimeout = TimeSpan.FromMinutes(1);
 31
 232        public static readonly TimeSpan ClientPumpRenewLockTimeout = TimeSpan.FromMinutes(5);
 33
 234        public static readonly TimeSpan MaximumRenewBufferDuration = TimeSpan.FromSeconds(10);
 35
 236        public static readonly TimeSpan DefaultRetryDeltaBackoff = TimeSpan.FromSeconds(3);
 37
 238        public static readonly TimeSpan NoMessageBackoffTimeSpan = TimeSpan.FromSeconds(5);
 39
 40        public const string SasTokenType = "servicebus.windows.net:sastoken";
 41
 42        public const string JsonWebTokenType = "jwt";
 43
 44        public const string AadServiceBusAudience = "https://servicebus.azure.net/";
 45
 46        /// Represents 00:00:00 UTC Thursday 1, January 1970.
 247        public static readonly DateTime EpochTime = new DateTime(1970, 1, 1, 0, 0, 0, 0, DateTimeKind.Utc);
 48
 49        public const int WellKnownPublicPortsLimit = 1023;
 50    }
 51}

Methods/Properties

.cctor()