| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | using Azure; |
| | 9 | | using Azure.Core; |
| | 10 | |
|
| | 11 | | namespace Azure.Data.Tables |
| | 12 | | { |
| | 13 | | internal class TableQueryEntitiesHeaders |
| | 14 | | { |
| | 15 | | private readonly Response _response; |
| 732 | 16 | | public TableQueryEntitiesHeaders(Response response) |
| | 17 | | { |
| 732 | 18 | | _response = response; |
| 732 | 19 | | } |
| | 20 | | /// <summary> Indicates the version of the Table service used to execute the request. This header is returned fo |
| 0 | 21 | | public string Version => _response.Headers.TryGetValue("x-ms-version", out string value) ? value : null; |
| | 22 | | /// <summary> This header contains the continuation token value for partition key. </summary> |
| 796 | 23 | | public string XMsContinuationNextPartitionKey => _response.Headers.TryGetValue("x-ms-continuation-NextPartitionK |
| | 24 | | /// <summary> This header contains the continuation token value for row key. </summary> |
| 732 | 25 | | public string XMsContinuationNextRowKey => _response.Headers.TryGetValue("x-ms-continuation-NextRowKey", out str |
| | 26 | | } |
| | 27 | | } |