Determines whether the specified query is valid for the connection
manager.
Namespace:
Microsoft.ConfigurationManagement.ManagementProvider
Assembly:
Microsoft.ConfigurationManagement.ManagementProvider (in
microsoft.configurationmanagement.managementprovider.dll)
Usage
Visual Basic |
Dim instance As ConnectionManagerBase
Dim query As String
Dim returnValue As Boolean
returnValue = instance.IsQueryValid(query)
|
Syntax
Visual Basic |
Public MustOverride Function IsQueryValid ( _
query As String _
) As Boolean
|
C# |
public abstract bool IsQueryValid (
string query
)
|
C++ |
public:
virtual bool IsQueryValid (
String^ query
) abstract
|
J# |
public abstract boolean IsQueryValid (
String query
)
|
JScript |
public abstract function IsQueryValid (
query : String
) : boolean
|
Parameters
- query
-
[in] The name of the query to check for validity.
Return Value
true in all cases.
Thread Safety
Any public static (Shared in Visual
Basic) members of this type are thread safe. Any instance members
are not guaranteed to be thread safe.
Platforms
Development Platforms
Windows Server 2003, Windows Vista
Target Platforms
Windows Server 2003,Windows Vista
See Also