IManagementHost.CreateHostModule 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 host module.
public:
Microsoft::Web::Management::Client::Module ^ CreateHostModule();
public Microsoft.Web.Management.Client.Module CreateHostModule ();
abstract member CreateHostModule : unit -> Microsoft.Web.Management.Client.Module
Public Function CreateHostModule () As Module
Returns
The host Module object.
Examples
The following example shows an implementation of the CreateHostModule method.
Module IManagementHost.CreateHostModule() {
return new MyDefaultHostModule();
}