| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | using System; |
| | 5 | | using System.Collections.Generic; |
| | 6 | | using System.Text; |
| | 7 | |
|
| | 8 | | namespace Azure.Storage.Blobs.Models |
| | 9 | | { |
| | 10 | | /// <summary> |
| | 11 | | /// Blob query error. |
| | 12 | | /// </summary> |
| | 13 | | public class BlobQueryError |
| | 14 | | { |
| | 15 | | /// <summary> |
| | 16 | | /// Name. |
| | 17 | | /// </summary> |
| 32 | 18 | | public string Name { get; internal set; } |
| | 19 | |
|
| | 20 | | /// <summary> |
| | 21 | | /// Description. |
| | 22 | | /// </summary> |
| 32 | 23 | | public string Description { get; internal set; } |
| | 24 | |
|
| | 25 | | /// <summary> |
| | 26 | | /// If the error is a fatal error. |
| | 27 | | /// </summary> |
| 32 | 28 | | public bool IsFatal { get; internal set; } |
| | 29 | |
|
| | 30 | | /// <summary> |
| | 31 | | /// The position of the error. |
| | 32 | | /// </summary> |
| 32 | 33 | | public long Position { get; internal set; } |
| | 34 | |
|
| 32 | 35 | | internal BlobQueryError() { } |
| | 36 | | } |
| | 37 | | } |