1 type derived from ObjectQuery
System.Management (1)
managementquery.cs (1)
512 public class WqlObjectQuery : ObjectQuery
5 instantiations of ObjectQuery
System.Management (5)
managementobjectsearcher.cs (4)
102public ManagementObjectSearcher(string queryString) : this(null, new ObjectQuery(queryString), null) {} 139this(new ManagementScope(scope), new ObjectQuery(queryString), null) {} 183this(new ManagementScope(scope), new ObjectQuery(queryString), options) {} 211this.query = new ObjectQuery();
managementquery.cs (1)
247 return new ObjectQuery(QueryLanguage, QueryString);
19 references to ObjectQuery
System.Management (19)
managementobjectsearcher.cs (11)
21/// query represented in an <see cref='System.Management.ObjectQuery'/> or it's derivatives, and optionally a <see cref='System.Management.ManagementScope'/> representing the WMI namespace 69private ObjectQuery query; 108/// <param name='query'>An <see cref='System.Management.ObjectQuery'/> representing the query to be invoked by the searcher.</param> 117public ManagementObjectSearcher(ObjectQuery query) : this (null, query, null) {} 146/// <param name=' query'>An <see cref='System.Management.ObjectQuery'/> representing the query to be invoked.</param> 161public ManagementObjectSearcher(ManagementScope scope, ObjectQuery query) : this(scope, query, null) {} 190/// <param name=' query'>An <see cref='System.Management.ObjectQuery'/> specifying the query to be invoked</param> 204public ManagementObjectSearcher(ManagementScope scope, ObjectQuery query, EnumerationOptions options) 209this.query = (ObjectQuery)query.Clone(); 270public ObjectQuery Query 279query = (ObjectQuery)value.Clone ();
managementquery.cs (8)
213 /// <para>Initializes a new instance of the <see cref='System.Management.ObjectQuery'/> 217 /// <para> Initializes a new instance of the <see cref='System.Management.ObjectQuery'/> 223 /// <para> Initializes a new instance of the <see cref='System.Management.ObjectQuery'/> 230 /// <para> Initializes a new instance of the <see cref='System.Management.ObjectQuery'/> 3229 if (value is ObjectQuery && destinationType == typeof(InstanceDescriptor)) 3231 ObjectQuery obj = ((ObjectQuery)(value)); 3232 ConstructorInfo ctor = typeof(ObjectQuery).GetConstructor(new Type[] {typeof(System.String)});