ModulePropertiesPage.OnRefresh Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the page settings when the page is refreshed.
protected:
override void OnRefresh();
protected override void OnRefresh ();
override this.OnRefresh : unit -> unit
Protected Overrides Sub OnRefresh ()
Examples
The following example calls the GetSettings method when a page is refreshed.
protected override void OnRefresh() {
GetSettings();
}
Remarks
You do not need to override this method unless additional processing is required when the page is refreshed.