IModulePage.Initialize(Module, ModulePageInfo, Object) 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.
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
- 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.