This documentation is archived and is not being maintained.
ManagementQualifierFlavors Enumeration
Visual Studio 2010
Qualifier flavors that can be used with WMI provider extensions.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: System.Management.InstrumentationAssembly: System.Management.Instrumentation (in System.Management.Instrumentation.dll)
| Member name | Description | |
|---|---|---|
| Amended | The qualifier is not required in the basic class definition and can be moved to the amendment to be localized. | |
| DisableOverride | The qualifier cannot be overridden in a derived class or instance. Note that being able to override a propagated qualifier is the default. | |
| ClassOnly | The qualifier is propagated to instances. | |
| ThisClassOnly | The qualifier is not propagated to derived classes. |
To learn more about qualifier flavors read the Qualifier Flavors topic in the WMI SDK on MSDN.
The following example demonstrates how to use the DisableOverride ManagementQualifierFlavors enumeration. Here it is being applied to the Association qualifier.
[ManagementQualifier("Association",
Flavor = ManagementQualifierFlavors.DisableOverride)]
public class AssociationSampleBase
{
[ManagementReference(Type = "UserInfo")]
[ManagementKey]
public string Configuration;
[ManagementReference(Type = "LogInfo")]
[ManagementKey]
public string Hosting;
//additional code omitted
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: