WqlObjectQuery Constructors

Definition

Initializes a new instance of the WqlObjectQuery class.

Overloads

WqlObjectQuery()

Initializes a new instance of the WqlObjectQuery class. This is the parameterless constructor.

WqlObjectQuery(String)

Initializes a new instance of the WqlObjectQuery class initialized to the specified query.

WqlObjectQuery()

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

Initializes a new instance of the WqlObjectQuery class. This is the parameterless constructor.

public:
 WqlObjectQuery();
public WqlObjectQuery ();
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

WqlObjectQuery(String)

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

Initializes a new instance of the WqlObjectQuery class initialized to the specified query.

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

Parameters

query
String

The representation of the data 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