次の方法で共有


WqlEventQuery コンストラクタ (String, TimeSpan)

指定した待機時間を使用して、指定したイベント クラスの WqlEventQuery クラスの新しいインスタンスを初期化します。

名前空間: System.Management
アセンブリ: System.Management (system.management.dll 内)

構文

'宣言
Public Sub New ( _
    eventClassName As String, _
    withinInterval As TimeSpan _
)
'使用
Dim eventClassName As String
Dim withinInterval As TimeSpan

Dim instance As New WqlEventQuery(eventClassName, withinInterval)
public WqlEventQuery (
    string eventClassName,
    TimeSpan withinInterval
)
public:
WqlEventQuery (
    String^ eventClassName, 
    TimeSpan withinInterval
)
public WqlEventQuery (
    String eventClassName, 
    TimeSpan withinInterval
)
public function WqlEventQuery (
    eventClassName : String, 
    withinInterval : TimeSpan
)

パラメータ

  • eventClassName
    クエリを実行するイベント クラスの名前。
  • withinInterval
    イベントを受け取るまでの許容待機時間を指定する TimeSpan 値。この値は、要求するクエリに対して明示的なイベント プロバイダがないクラスで使用します。WMI は、条件のポーリングを要求されます。この間隔は、イベントの通知が配信されるまでに経過する最大時間です。

使用例

イベントおよびイベントを受け取るまでの許容待機時間を指定する期間値を指定して、WqlEventQuery を初期化する例を次に示します。

Imports System
Imports System.Management


Public Class EventSample
    Public Overloads Shared Function _
        Main(ByVal args() As String) As Integer

        ' Requests all instance creation events,
        ' with a specified latency of
        ' 10 seconds. The query created
        ' is "SELECT * FROM __InstanceCreationEvent WITHIN 10"
        Dim t As New TimeSpan(0, 0, 10)
        Dim q As New WqlEventQuery("__InstanceCreationEvent", t)

        MessageBox.Show(q.QueryString)

    End Function 'Main
End Class 'EventSample
using System;
using System.Management;

public class EventSample 
{
    public static void Main(string[] args) 
    {
        // Requests all instance creation events,
        // with a specified latency of
        // 10 seconds. The query created
        // is "SELECT * FROM __InstanceCreationEvent WITHIN 10"
        WqlEventQuery q = new WqlEventQuery("__InstanceCreationEvent",
            new TimeSpan(0,0,10));


        Console.WriteLine(q.QueryString);
        return;
    }
}

.NET Framework のセキュリティ

  • 直前の呼び出し元に対する完全な信頼。このメンバは、部分的に信頼されているコードから使用することはできません。詳細については、「」を参照してください。

プラットフォーム

Windows 98, Windows 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

開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。

バージョン情報

.NET Framework

サポート対象 : 2.0、1.1、1.0

参照

関連項目

WqlEventQuery クラス
WqlEventQuery メンバ
System.Management 名前空間