// Copyright © 2020 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.
//NOTE:Classes in the CefSharp.Core namespace have been hidden from intellisnse so users don't use them directly
namespace CefSharp
{
///
public class BrowserSettings : CefSharp.Core.BrowserSettings
{
///
public BrowserSettings(bool autoDispose = false) : base(autoDispose)
{
}
///
/// Create a new instance of
///
/// set to false if you plan to reuse the instance, otherwise true
/// BrowserSettings
public static IBrowserSettings Create(bool autoDispose = false)
{
return new CefSharp.Core.BrowserSettings(autoDispose);
}
}
}