azure-core
modified_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/datetime.hpp"
12 #include "azure/core/nullable.hpp"
13 
14 #include <string>
15 
16 namespace Azure {
17 
23 {
28  virtual ~ModifiedConditions() = default;
29 
35 
41 };
42 } // namespace Azure
Azure::ModifiedConditions::IfUnmodifiedSince
Azure::Nullable< Azure::DateTime > IfUnmodifiedSince
Optionally limit requests to resources that have remained unmodified.
Definition: modified_conditions.hpp:40
Azure::ModifiedConditions::~ModifiedConditions
virtual ~ModifiedConditions()=default
Destructs ModifiedConditions.
datetime.hpp
Support for date and time standardized string formats.
Azure::Nullable< Azure::DateTime >
Azure::ModifiedConditions
Specifies HTTP options for conditional requests based on modification time.
Definition: modified_conditions.hpp:23
Azure
Azure SDK abstractions.
Definition: azure_assert.hpp:55
nullable.hpp
Manages an optional contained value, i.e. a value that may or may not be present.
Azure::ModifiedConditions::IfModifiedSince
Azure::Nullable< Azure::DateTime > IfModifiedSince
Optionally limit requests to resources that have only been modified since this point in time.
Definition: modified_conditions.hpp:34