azure-core
match_conditions.hpp
Go to the documentation of this file.
1 // Copyright (c) Microsoft Corporation. All rights reserved.
2 // SPDX-License-Identifier: MIT
3 
9 #pragma once
10 
11 #include "azure/core/etag.hpp"
12 
13 #include <string>
14 
15 namespace Azure {
16 
22 {
27  virtual ~MatchConditions() = default;
28 
34 
40 };
41 } // namespace Azure
Azure::ETag
Represents an HTTP validator.
Definition: etag.hpp:21
Azure::MatchConditions
Specifies HTTP options for conditional requests.
Definition: match_conditions.hpp:22
Azure::MatchConditions::IfMatch
ETag IfMatch
Optionally limit requests to resources that match the value specified.
Definition: match_conditions.hpp:33
etag.hpp
Define ETag.
Azure::MatchConditions::~MatchConditions
virtual ~MatchConditions()=default
Destructs MatchConditions.
Azure
Azure SDK abstractions.
Definition: azure_assert.hpp:55
Azure::MatchConditions::IfNoneMatch
ETag IfNoneMatch
Optionally limit requests to resources that do not match the value specified. Specify ETag::Any() to ...
Definition: match_conditions.hpp:39