1 type derived from EventQuery
System.Management (1)
System\Management\ManagementQuery.cs (1)
2419public class WqlEventQuery : EventQuery
5 instantiations of EventQuery
System.Management (5)
System\Management\ManagementEventWatcher.cs (4)
166string query) : this(null, new EventQuery(query), null) { } 187string query) : this(new ManagementScope(scope), new EventQuery(query), null) { } 201EventWatcherOptions options) : this(new ManagementScope(scope), new EventQuery(query), options) { } 225this.query = new EventQuery();
System\Management\ManagementQuery.cs (1)
459return new EventQuery(QueryLanguage, QueryString);
18 references to EventQuery
System.Management (18)
System\Management\ManagementEventWatcher.cs (10)
117private EventQuery query; 148/// <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> 154EventQuery query) : this(null, query, null) { } 173/// <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> 176EventQuery query) : this(scope, query, null) { } 210/// <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> 214EventQuery query, 223this.query = (EventQuery)query.Clone(); 316public EventQuery Query 327query = (EventQuery)value.Clone();
System\Management\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'/> 3219if (value is EventQuery && destinationType == typeof(InstanceDescriptor)) 3221EventQuery obj = ((EventQuery)(value)); 3222ConstructorInfo ctor = typeof(EventQuery).GetConstructor(new Type[] { typeof(string) });