You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Loads the specified <paramref name="url"/> in the Main Frame.
12
13
/// </summary>
13
-
intId{get;}
14
+
/// <param name="url">The URL to be loaded.</param>
15
+
/// <remarks>
16
+
/// This is exactly the same as calling Load(string), it was added
17
+
/// as the method name is more meaningful and easier to discover
18
+
/// via Intellisense.
19
+
/// </remarks>
20
+
voidLoadUrl(stringurl);
14
21
15
22
/// <summary>
16
-
/// Set the browser Hwnd
23
+
/// A flag that indicates whether the WebBrowser is initialized (true) or not (false).
17
24
/// </summary>
18
-
/// <param name="hwnd">Hwnd</param>
19
-
voidSetBrowserHwnd(IntPtrhwnd);
25
+
/// <value><c>true</c> if this instance is browser initialized; otherwise, <c>false</c>.</value>
26
+
boolIsBrowserInitialized{get;}
20
27
21
28
/// <summary>
22
-
/// Called when a DevTools message arrives from the browser process
29
+
/// A flag that indicates whether the WebBrowser has been disposed (<see langword="true" />) or not (<see langword="false" />)
23
30
/// </summary>
24
-
/// <param name="jsonMsg"></param>
25
-
voidOnDevToolsMessage(stringjsonMsg);
31
+
/// <value><see langword="true" /> if this instance is disposed; otherwise, <see langword="false" /></value>
32
+
boolIsDisposed{get;}
26
33
27
34
/// <summary>
28
-
/// DevTools is ready in the browser process to create the DevToolsContext
35
+
/// The address (URL) which the browser control is currently displaying.
36
+
/// Will automatically be updated as the user navigates to another page (e.g. by clicking on a link).
29
37
/// </summary>
30
-
voidOnDevToolsReady();
38
+
/// <value>The address.</value>
39
+
/// <remarks>In the WPF control, this property is implemented as a Dependency Property and fully supports data
40
+
/// binding.</remarks>
41
+
stringAddress{get;}
42
+
43
+
/// <summary>
44
+
/// Gets all frames attached to the page.
45
+
/// </summary>
46
+
/// <value>An array of all frames attached to the page.</value>
47
+
Frame[]Frames{get;}
48
+
49
+
/// <summary>
50
+
/// Gets page's main frame
51
+
/// </summary>
52
+
/// <remarks>
53
+
/// Page is guaranteed to have a main frame which persists during navigations.
54
+
/// </remarks>
55
+
FrameMainFrame{get;}
56
+
57
+
/// <summary>
58
+
/// Navigates to an url
59
+
/// </summary>
60
+
/// <param name="url">URL to navigate page to. The url should include scheme, e.g. https://.</param>
61
+
/// <param name="timeout">Maximum navigation time in milliseconds, defaults to 30 seconds, pass <c>0</c> to disable timeout. </param>
62
+
/// <param name="waitUntil">When to consider navigation succeeded, defaults to <see cref="WaitUntilNavigation.Load"/>. Given an array of <see cref="WaitUntilNavigation"/>, navigation is considered to be successful after all events have been fired</param>
63
+
/// <returns>Task which resolves to the main resource response. In case of multiple redirects, the navigation will resolve with the response of the last redirect</returns>
0 commit comments