ManagementEntityAttribute Class
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.] Namespace: System.Management
Assembly: System.Core (in System.Core.dll)
Defines an attribute on a class that is used to indicate that the class provides management information exposed through a WMI provider.
Assembly: System.Core (in System.Core.dll)
The following example shows how to use the ManagementEntity attribute to mark a class.
// Use the ManagementEntity attribute on the class to specify that this // class contains management information that is available from
// provider.
[ManagementEntity(Name = "MortgageCalc")]
public class MortgageCalcWMIProvider
{
}
Show: