The Reload method refreshes the currently loaded page,
similar to pressing F5 in a web browser. If the ClearCache
parameter is True, the document cache is also cleared before reloading,
ensuring that all resources are fetched again from the server instead of
being served from the local cache.
This method is generally preferred over Refresh when an
application only needs to reload the content without forcing the host window
and browser control to repaint. It provides a lightweight way to refresh
the page and optionally reset cached resources, without the overhead of a
full redraw of the hosting window.
An application would typically use this method in response to a
user action or when it needs to ensure the latest version of a
document is displayed after cached data may have become stale.