監査およびログ イベント用の WMI シンクの作成
次のサンプル コードを使用して、監査イベントとログ イベントを監視する Windows Management Instrumentation (WMI) シンクを作成できます。
//Create the WMI query and Event watcher and subscribe to events
ManagementEventWatcher watcher = new ManagementEventWatcher ("root/Default", "select * from PackageEvent");
ManagementBaseObject evtObj = watcher.WaitForNextEvent();
//Do what you want with the event