IModulePage.Initialize(Module, ModulePageInfo, Object) Method

Definition

Initializes the module with the pageInfo properties when the page is first created.

public:
 void Initialize(Microsoft::Web::Management::Client::Module ^ module, Microsoft::Web::Management::Client::ModulePageInfo ^ pageInfo, System::Object ^ navigationData);
public void Initialize (Microsoft.Web.Management.Client.Module module, Microsoft.Web.Management.Client.ModulePageInfo pageInfo, object navigationData);
abstract member Initialize : Microsoft.Web.Management.Client.Module * Microsoft.Web.Management.Client.ModulePageInfo * obj -> unit

Parameters

module
Module

The Module object to be initialized.

pageInfo
ModulePageInfo

The ModulePageInfo object for the page.

navigationData
Object

An object that contains the location of the page.

Remarks

The module parameter provides the main entry point for the client. The pageInfo parameter represents a page of the user interface. The navigationData parameter enables the IIS Manager to navigate to the specific page. The Initialize method initializes the module with the pageInfo properties for the page at the navigationData location.

Applies to

See also