AsyncExtensionsGetNavigationEntriesAsync Method |
Version 130.1.90
Retrieve a snapshot of current navigation entries
Namespace: CefSharpAssembly: CefSharp (in CefSharp.dll) Version: 129.0.110.0 (129.0.110.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 IBrowserHost
- browserHost
- currentOnly Boolean (Optional)
- 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
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