Exemplo n.º 1
0
 /// <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);
 }
Exemplo n.º 2
0
 /// <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);
 }