WqlEventQuery コンストラクタ (String, TimeSpan, String)
指定したイベント クラス名、ポーリング間隔、および条件を使用して、WqlEventQuery クラスの新しいインスタンスを初期化します。
名前空間: System.Management
アセンブリ: System.Management (system.management.dll 内)
構文
'宣言
Public Sub New ( _
eventClassName As String, _
withinInterval As TimeSpan, _
condition As String _
)
'使用
Dim eventClassName As String
Dim withinInterval As TimeSpan
Dim condition As String
Dim instance As New WqlEventQuery(eventClassName, withinInterval, condition)
public WqlEventQuery (
string eventClassName,
TimeSpan withinInterval,
string condition
)
public:
WqlEventQuery (
String^ eventClassName,
TimeSpan withinInterval,
String^ condition
)
public WqlEventQuery (
String eventClassName,
TimeSpan withinInterval,
String condition
)
public function WqlEventQuery (
eventClassName : String,
withinInterval : TimeSpan,
condition : String
)
パラメータ
- eventClassName
クエリを実行するイベント クラスの名前。
- withinInterval
イベントを受け取るまでの許容待機時間を指定する TimeSpan 値。この値は、要求するクエリに対して明示的なイベント プロバイダがないクラスで使用します。WMI は、条件のポーリングを要求されます。この間隔は、イベントの通知が配信されるまでに経過する最大時間です。
- condition
指定したクラスのイベントに適用される条件。
使用例
次の例では、イベント クエリ "SELECT * FROM __InstanceCreationEvent WITHIN 10 WHERE TargetInstance ISA Win32_Service" を作成します。これは、10 秒のポーリング間隔で、Win32_Service インスタンスの作成通知を送信します。
Imports System
Imports System.Management
Public Class EventSample
Public Overloads Shared Function _
Main(ByVal args() As String) As Integer
' Requests notification of the creation
' of Win32_Service instances with a 10 second
' allowed latency.
Dim t As New TimeSpan(0, 0, 10)
Dim q As New WqlEventQuery("__InstanceCreationEvent", _
t, "TargetInstance isa ""Win32_Service""")
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 notification of the creation
// of Win32_Service instances with
// a 10 second allowed latency.
WqlEventQuery q = new WqlEventQuery("__InstanceCreationEvent",
new TimeSpan(0,0,10),
"TargetInstance isa 'Win32_Service'");
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