| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | namespace Azure |
| | 5 | | { |
| | 6 | | /// <summary> |
| | 7 | | /// Specifies HTTP options for conditional requests. |
| | 8 | | /// </summary> |
| | 9 | | public class MatchConditions |
| | 10 | | { |
| | 11 | | /// <summary> |
| | 12 | | /// Optionally limit requests to resources that have a matching ETag. |
| | 13 | | /// </summary> |
| 0 | 14 | | public ETag? IfMatch { get; set; } |
| | 15 | |
|
| | 16 | | /// <summary> |
| | 17 | | /// Optionally limit requests to resources that do not match the ETag. |
| | 18 | | /// </summary> |
| 0 | 19 | | public ETag? IfNoneMatch { get; set; } |
| | 20 | | } |
| | 21 | | } |