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)
102
public ManagementObjectSearcher(string queryString) : this(null, new
ObjectQuery
(queryString), null) {}
139
this(new ManagementScope(scope), new
ObjectQuery
(queryString), null) {}
183
this(new ManagementScope(scope), new
ObjectQuery
(queryString), options) {}
211
this.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
69
private
ObjectQuery
query;
108
/// <param name='query'>An <see cref='System.Management.
ObjectQuery
'/> representing the query to be invoked by the searcher.</param>
117
public ManagementObjectSearcher(
ObjectQuery
query) : this (null, query, null) {}
146
/// <param name=' query'>An <see cref='System.Management.
ObjectQuery
'/> representing the query to be invoked.</param>
161
public 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>
204
public ManagementObjectSearcher(ManagementScope scope,
ObjectQuery
query, EnumerationOptions options)
209
this.query = (
ObjectQuery
)query.Clone();
270
public
ObjectQuery
Query
279
query = (
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)});