英語で読む

次の方法で共有


InstrumentationType 列挙型

定義

クラスが提供するインストルメンテーションの種類を指定します。

注: WMI .NET ライブラリは最終的な状態と見なされます。これらのライブラリに影響を与えるセキュリティ以外に関連する問題については、さらなる開発、機能拡張、または更新は利用できません。 MI API は新しい開発すべてに使用する必要があります。

C#
public enum InstrumentationType
継承
InstrumentationType

フィールド

名前 説明
Abstract 2

クラスは、Management Instrumentation の抽象クラスを定義します。

Event 1

クラスは、Management Instrumentation のイベントを提供します。

Instance 0

クラスは、Management Instrumentation のインスタンスを提供します。

次の例では、 列挙を使用して管理イベント クラスを作成する方法を InstrumentationType 示します。

C#
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;
        }
    }
}

適用対象

製品 バージョン
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1