/// <summary> /// Retrieve a snapshot of current navigation entries as values sent to the /// specified visitor. If |current_only| is true only the current navigation /// entry will be sent, otherwise all navigation entries will be sent. /// </summary> public void GetNavigationEntries(CefNavigationEntryVisitor visitor, bool currentOnly) { cef_browser_host_t.get_navigation_entries(_self, visitor.ToNative(), currentOnly ? 1 : 0); }