AsyncExtensionsGetNavigationEntriesAsync Method |
Version 101.0.180
Retrieve a snapshot of current navigation entries
Namespace:
CefSharp
Assembly:
CefSharp (in CefSharp.dll) Version: 101.0.180.0 (101.0.180.0)
Syntax public static Task<List<NavigationEntry>> GetNavigationEntriesAsync(
this IBrowserHost browserHost,
bool currentOnly = false
)
public:
[ExtensionAttribute]
static Task<List<NavigationEntry^>^>^ GetNavigationEntriesAsync(
IBrowserHost^ browserHost,
bool currentOnly = false
)
Parameters
- browserHost
- Type: CefSharpIBrowserHost
browserHost - currentOnly (Optional)
- Type: SystemBoolean
If true the List will only contain the current navigation entry.
If false the List will include all navigation entries will be included. Default is false
Return Value
Type:
TaskListNavigationEntry[Missing <returns> documentation for "M:CefSharp.AsyncExtensions.GetNavigationEntriesAsync(CefSharp.IBrowserHost,System.Boolean)"]
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IBrowserHost. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also