Stroika Library 3.0d16
 
Loading...
Searching...
No Matches
CacheControl.inl
1/*
2 * Copyright(c) Sophist Solutions, Inc. 1990-2025. All rights reserved
3 */
4
6
7 /*
8 ********************************************************************************
9 ****************************** HTTP::CacheControl ******************************
10 ********************************************************************************
11 */
13 {
14 return As<Characters::String> ();
15 }
16
17}
18
20 template <>
21 constexpr EnumNames<IO::Network::HTTP::CacheControl::Cacheability> DefaultNames<IO::Network::HTTP::CacheControl::Cacheability>::k{{{
22 {IO::Network::HTTP::CacheControl::Cacheability::ePublic, L"public"},
23 {IO::Network::HTTP::CacheControl::Cacheability::ePrivate, L"private"},
24 {IO::Network::HTTP::CacheControl::Cacheability::eNoCache, L"no-cache"},
25 {IO::Network::HTTP::CacheControl::Cacheability::eNoStore, L"no-store"},
26 }}};
27}
String is like std::u32string, except it is much easier to use, often much more space efficient,...
Definition String.h:201
nonvirtual Characters::String ToString() const