WebBrowser.Refresh Method

Definition

Reloads the current page.

Overloads

Refresh()

Reloads the current page.

Refresh(Boolean)

Reloads the current page with optional cache validation.

Refresh()

Reloads the current page.

public:
 void Refresh();
[System.Security.SecurityCritical]
public void Refresh ();
public void Refresh ();
[<System.Security.SecurityCritical>]
member this.Refresh : unit -> unit
member this.Refresh : unit -> unit
Public Sub Refresh ()
Attributes

Exceptions

The WebBrowser instance is no longer valid.

A reference to the underlying native WebBrowser could not be retrieved.

Applies to

Refresh(Boolean)

Reloads the current page with optional cache validation.

public:
 void Refresh(bool noCache);
[System.Security.SecurityCritical]
public void Refresh (bool noCache);
public void Refresh (bool noCache);
[<System.Security.SecurityCritical>]
member this.Refresh : bool -> unit
member this.Refresh : bool -> unit
Public Sub Refresh (noCache As Boolean)

Parameters

noCache
Boolean

Specifies whether to refresh without cache validation.

Attributes

Exceptions

The WebBrowser instance is no longer valid.

A reference to the underlying native WebBrowser could not be retrieved.

Remarks

If noCache is true, the WebBrowser control refreshes without cache validation by sending a "Pragma:no-cache" header to the server.

Applies to