// Copyright © 2015 The CefSharp Authors. All rights reserved. // // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. #pragma once #include "Stdafx.h" #include "include\cef_request_context.h" namespace CefSharp { namespace Core { /// /// RequestContextSettings /// [System::ComponentModel::EditorBrowsableAttribute(System::ComponentModel::EditorBrowsableState::Never)] public ref class RequestContextSettings { private: CefRequestContextSettings* _settings; internal: operator CefRequestContextSettings() { return *_settings; } public: /// /// Initializes a new instance of the RequestContextSettings class. /// RequestContextSettings() : _settings(new CefRequestContextSettings()) { } !RequestContextSettings() { delete _settings; } ~RequestContextSettings() { this->!RequestContextSettings(); } /// /// To persist session cookies (cookies without an expiry date or validity /// interval) by default when using the global cookie manager set this value to /// true. Session cookies are generally intended to be transient and most /// Web browsers do not persist them. Can be set globally using the /// CefSettings.PersistSessionCookies value. This value will be ignored if /// CachePath is empty or if it matches the CefSettings.CachePath value. /// property bool PersistSessionCookies { bool get() { return _settings->persist_session_cookies == 1; } void set(bool value) { _settings->persist_session_cookies = value; } } /// /// The directory where cache data for this request context will be stored on disk. /// If this value is non - empty then it must be an absolute path that is either equal to or a /// child directory of CefSettings.RootCachePath.If this value is empty then browsers will be /// created in "incognito mode" where in - memory caches are used for storage and no profile - /// specific data is persisted to disk(installation - specific data will still be persisted in RootCachePath). /// HTML5 databases such as localStorage will only persist across sessions if a cache path is specified. /// To share the global browser cache and related configuration set this value to match the CefSettings.CachePath value. /// property String^ CachePath { String^ get() { return StringUtils::ToClr(_settings->cache_path); } void set(String^ value) { StringUtils::AssignNativeFromClr(_settings->cache_path, value); } } /// /// Comma delimited ordered list of language codes without any whitespace that /// will be used in the "Accept-Language" HTTP header. Can be set globally /// using the CefSettings.accept_language_list value or overridden on a per- /// browser basis using the BrowserSettings.AcceptLanguageList value. If /// all values are empty then "en-US,en" will be used. This value will be /// ignored if CachePath matches the CefSettings.CachePath value. /// property String^ AcceptLanguageList { String^ get() { return StringUtils::ToClr(_settings->accept_language_list); } void set(String^ value) { StringUtils::AssignNativeFromClr(_settings->accept_language_list, value); } } /// /// Comma delimited list of schemes supported by the associated /// ICookieManager. If CookieableSchemesExcludeDefaults is false the /// default schemes ("http", "https", "ws" and "wss") will also be supported. /// Specifying a CookieableSchemesList value and setting /// CookieableSchemesExcludeDefaults to true will disable all loading /// and saving of cookies for this manager. This value will be ignored if /// matches the value. /// property String^ CookieableSchemesList { String^ get() { return StringUtils::ToClr(_settings->cookieable_schemes_list); } void set(String^ value) { StringUtils::AssignNativeFromClr(_settings->cookieable_schemes_list, value); } } /// /// If CookieableSchemesExcludeDefaults is false the /// default schemes ("http", "https", "ws" and "wss") will also be supported. /// Specifying a CookieableSchemesList value and setting /// CookieableSchemesExcludeDefaults to true will disable all loading /// and saving of cookies for this manager. This value will be ignored if /// matches the value. /// property bool CookieableSchemesExcludeDefaults { bool get() { return _settings->cookieable_schemes_exclude_defaults == 1; } void set(bool value) { _settings->cookieable_schemes_exclude_defaults = value; } } }; } }