| | 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 | |
|
| | 4 | | namespace 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 | | { |
| 0 | 11 | | public static readonly string BlobAlreadyExists = "BlobAlreadyExists"; |
| 0 | 12 | | public static readonly string LeaseIdMissing = "LeaseIdMissing"; |
| 0 | 13 | | public static readonly string LeaseLost = "LeaseLost"; |
| 0 | 14 | | public static readonly string LeaseAlreadyPresent = "LeaseAlreadyPresent"; |
| 0 | 15 | | public static readonly string LeaseIdMismatchWithLeaseOperation = "LeaseIdMismatchWithLeaseOperation"; |
| 0 | 16 | | public static readonly string LeaseIdMismatchWithBlobOperation = "LeaseIdMismatchWithBlobOperation"; |
| | 17 | | } |
| | 18 | | } |