< Summary

Class:Microsoft.Azure.EventHubs.Processor.BlobErrorCodeStrings
Assembly:Microsoft.Azure.EventHubs.Processor
File(s):C:\Git\azure-sdk-for-net\sdk\eventhub\Microsoft.Azure.EventHubs.Processor\src\BlobErrorCodeStrings.cs
Covered lines:0
Uncovered lines:6
Coverable lines:6
Total lines:18
Line coverage:0% (0 of 6)
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\eventhub\Microsoft.Azure.EventHubs.Processor\src\BlobErrorCodeStrings.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.EventHubs.Processor
 5{
 6    /// <summary>
 7    /// BlobErrorCodeStrings isn't public in Storage UWP API, therefore we need to provide error code strings here.
 8    /// </summary>
 9    static class BlobErrorCodeStrings
 10    {
 011        public static readonly string BlobAlreadyExists = "BlobAlreadyExists";
 012        public static readonly string LeaseIdMissing = "LeaseIdMissing";
 013        public static readonly string LeaseLost = "LeaseLost";
 014        public static readonly string LeaseAlreadyPresent = "LeaseAlreadyPresent";
 015        public static readonly string LeaseIdMismatchWithLeaseOperation = "LeaseIdMismatchWithLeaseOperation";
 016        public static readonly string LeaseIdMismatchWithBlobOperation = "LeaseIdMismatchWithBlobOperation";
 17    }
 18}

Methods/Properties

.cctor()