ObjectQuery Constructors

Definition

Initializes a new instance of the ObjectQuery class.

Overloads

ObjectQuery()

Initializes a new instance of the ObjectQuery class with no initialized values. This is the parameterless constructor.

ObjectQuery(String)

Initializes a new instance of the ObjectQuery class for a specific query string.

ObjectQuery(String, String)

Initializes a new instance of the ObjectQuery class for a specific query string and language.

ObjectQuery()

Source:
ManagementQuery.cs
Source:
ManagementQuery.cs
Source:
ManagementQuery.cs

Initializes a new instance of the ObjectQuery class with no initialized values. This is the parameterless constructor.

public:
 ObjectQuery();
public ObjectQuery ();
Public Sub New ()

Remarks

.NET Framework Security

Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.

Applies to

ObjectQuery(String)

Source:
ManagementQuery.cs
Source:
ManagementQuery.cs
Source:
ManagementQuery.cs

Initializes a new instance of the ObjectQuery class for a specific query string.

public:
 ObjectQuery(System::String ^ query);
public ObjectQuery (string query);
new System.Management.ObjectQuery : string -> System.Management.ObjectQuery
Public Sub New (query As String)

Parameters

query
String

The string representation of the query.

Remarks

.NET Framework Security

Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.

Applies to

ObjectQuery(String, String)

Source:
ManagementQuery.cs
Source:
ManagementQuery.cs
Source:
ManagementQuery.cs

Initializes a new instance of the ObjectQuery class for a specific query string and language.

public:
 ObjectQuery(System::String ^ language, System::String ^ query);
public ObjectQuery (string language, string query);
new System.Management.ObjectQuery : string * string -> System.Management.ObjectQuery
Public Sub New (language As String, query As String)

Parameters

language
String

The query language in which this query is specified.

query
String

The string representation of the query.

Remarks

.NET Framework Security

Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.

Applies to