/// <summary> /// Free the unmanaged CefSettingsBase instance. /// Under normal circumstances you shouldn't need to call this /// The unmanaged resource will be freed after <see cref="Cef.Initialize(CefSettingsBase)"/> (or one of the overloads) is called. /// </summary> public void Dispose() { settings?.Dispose(); settings = null; }
/// <summary> /// Free the unmanaged CefSettingsBase instance. /// Under normal circumstances you shouldn't need to call this /// The unmanaged resource will be freed after <see cref="Cef.Initialize(CefSettingsBase)"/> (or one of the overloads) is called. /// </summary> public void Dispose() { disposed = true; settings = null; }