InstrumentationType Enumeration
.NET Framework 3.0
Specifies the type of instrumentation provided by a class.
Namespace: System.Management.Instrumentation
Assembly: System.Management (in system.management.dll)
Assembly: System.Management (in system.management.dll)
The following example demonstrates how to create a management event class by using the InstrumentationType enumeration.
using System; using System.Management; using System.Configuration.Install; using System.Management.Instrumentation; // This example demonstrates how to create // a management event class by using // the InstrumentationType enumeration // Specify which namespace the management event // class is created in [assembly:Instrumented("Root/Default")] // Let the system know you will run // InstallUtil.exe tool against this assembly [System.ComponentModel.RunInstaller(true)] public class MyInstaller : DefaultManagementProjectInstaller {} namespace WMISample { // Create a management instrumentation event class [InstrumentationClass(InstrumentationType.Event)] public class MyEvent { private string EventName; public void setEventName(string name) { EventName = name; } } public class WMIInstrumentedEventExample { public static void Main() { MyEvent e = new MyEvent(); e.setEventName("Hello"); // Fire a management event Instrumentation.Fire(e); return; } } }
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: