本文整理匯總了VB.NET中System.Management.WqlEventQuery.GroupWithinInterval屬性的典型用法代碼示例。如果您正苦於以下問題:VB.NET WqlEventQuery.GroupWithinInterval屬性的具體用法?VB.NET WqlEventQuery.GroupWithinInterval怎麽用?VB.NET WqlEventQuery.GroupWithinInterval使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。
在下文中一共展示了WqlEventQuery.GroupWithinInterval屬性的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的VB.NET代碼示例。
示例1: EventSample
' 導入命名空間
Imports System.Management
Public Class EventSample
Public Overloads Shared Function _
Main(ByVal args() As String) As Integer
Dim query As New WqlEventQuery
query.EventClassName = "__InstanceCreationEvent"
query.Condition = "TargetInstance ISA 'Win32_NTLogEvent'"
query.GroupWithinInterval = New TimeSpan(0, 0, 10)
Dim collection As New System.Collections.Specialized. _
StringCollection
collection.Add("TargetInstance.SourceName")
query.GroupByPropertyList = collection
query.HavingCondition = "NumberOfEvents > 25"
MessageBox.Show(query.QueryString)
End Function 'Main
End Class