azure-core
Loading...
Searching...
No Matches
match_conditions.hpp
Go to the documentation of this file.
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
9#pragma once
10
11#include "azure/core/etag.hpp"
12
13#include <string>
14
15namespace Azure {
16
22{
27 virtual ~MatchConditions() = default;
28
34
40};
41} // namespace Azure
Represents an HTTP validator.
Definition etag.hpp:21
Define ETag.
Compute the hash value for the input binary data, using SHA256, SHA384 and SHA512.
Definition azure_assert.hpp:57
Specifies HTTP options for conditional requests.
Definition match_conditions.hpp:22
ETag IfMatch
Optionally limit requests to resources that match the value specified.
Definition match_conditions.hpp:33
virtual ~MatchConditions()=default
Destructs MatchConditions.
ETag IfNoneMatch
Optionally limit requests to resources that do not match the value specified. Specify ETag::Any() to ...
Definition match_conditions.hpp:39