Click or drag to resize

AsyncExtensionsGetNavigationEntriesAsync Method

Version 94.4.20
Retrieve a snapshot of current navigation entries

Namespace:  CefSharp
Assembly:  CefSharp (in CefSharp.dll) Version: 94.4.20.0 (94.4.20.0)
Syntax
public static Task<List<NavigationEntry>> GetNavigationEntriesAsync(
	this 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