/// <summary> /// Gets the names of all existing frames. /// </summary> public string[] GetFrameNames() { using (var names = new CefStringList()) { AliveBrowserObject.GetFrameNames(names); return(names.ToArray()); } }
/// <summary> /// Reload the current page ignoring any cached data. /// </summary> public void ReloadIgnoreCache() { AliveBrowserObject.ReloadIgnoreCache(); }
/// <summary> /// Stop loading the page. /// </summary> public void Stop() { AliveBrowserObject.StopLoad(); }
/// <summary> /// Reload the current page. /// </summary> public void Reload() { AliveBrowserObject.Reload(); }