ModuleProvider.ManagementUnit Property
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.
Gets the associated management unit.
protected:
property Microsoft::Web::Management::Server::ManagementUnit ^ ManagementUnit { Microsoft::Web::Management::Server::ManagementUnit ^ get(); };
protected Microsoft.Web.Management.Server.ManagementUnit ManagementUnit { get; }
member this.ManagementUnit : Microsoft.Web.Management.Server.ManagementUnit
Protected ReadOnly Property ManagementUnit As ManagementUnit
Property Value
The ManagementUnit object that is associated with the module.
Examples
The following example gets the value of the ManagementUnit property and passes it as a parameter to a tracing method.
ManagementUnit mi = this.ManagementUnit;
DemoModuleService.TraceManagementUnit(mi);