1 type derived from EventQuery
System.Management (1)
managementquery.cs (1)
2419
public class WqlEventQuery :
EventQuery
5 instantiations of EventQuery
System.Management (5)
managementeventwatcher.cs (4)
167
string query) : this(null, new
EventQuery
(query), null) {}
188
string query) : this(new ManagementScope(scope), new
EventQuery
(query), null) {}
202
EventWatcherOptions options) : this(new ManagementScope(scope), new
EventQuery
(query), options) {}
226
this.query = new
EventQuery
();
managementquery.cs (1)
459
return new
EventQuery
(QueryLanguage, QueryString);
18 references to EventQuery
System.Management (18)
managementeventwatcher.cs (10)
118
private
EventQuery
query;
149
/// <param name='query'>An <see cref='System.Management.
EventQuery
'/> object representing a WMI event query, which determines the events for which the watcher will listen.</param>
155
EventQuery
query) : this(null, query, null) {}
174
/// <param name=' query'>An <see cref='System.Management.
EventQuery
'/> object representing a WMI event query, which determines the events for which the watcher will listen.</param>
177
EventQuery
query) : this(scope, query, null) {}
211
/// <param name=' query'>An <see cref='System.Management.
EventQuery
'/> object representing a WMI event query, which determines the events for which the watcher will listen.</param>
215
EventQuery
query,
224
this.query = (
EventQuery
)query.Clone();
317
public
EventQuery
Query
328
query = (
EventQuery
)value.Clone ();
managementquery.cs (8)
426
/// <para>Initializes a new instance of the <see cref='System.Management.
EventQuery
'/>
430
/// <para>Initializes a new instance of the <see cref='System.Management.
EventQuery
'/>
436
/// <para> Initializes a new instance of the <see cref='System.Management.
EventQuery
'/>
442
/// <para> Initializes a new instance of the <see cref='System.Management.
EventQuery
'/>
3219
if (value is
EventQuery
&& destinationType == typeof(InstanceDescriptor))
3221
EventQuery
obj = ((
EventQuery
)(value));
3222
ConstructorInfo ctor = typeof(
EventQuery
).GetConstructor(new Type[] {typeof(System.String)});