Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlistair Leslie-Hughes <leslie_alistair@hotmail.com>2013-08-26 05:47:09 +0400
committerAlistair Leslie-Hughes <leslie_alistair@hotmail.com>2013-10-23 01:13:33 +0400
commit13d44dbcbe45f2242974c0f7249dfe095d8da484 (patch)
treec708561668f1c9a23200ae84a2f8884c68128746 /mcs/class/System.Management
parent596921b77d94a4d3e1bc260cadcf61aeae4c43a9 (diff)
Implement ManagementQuery QueryString
Diffstat (limited to 'mcs/class/System.Management')
-rw-r--r--mcs/class/System.Management/System.Management/ManagementQuery.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/mcs/class/System.Management/System.Management/ManagementQuery.cs b/mcs/class/System.Management/System.Management/ManagementQuery.cs
index c8283d766f2..aed1791445a 100644
--- a/mcs/class/System.Management/System.Management/ManagementQuery.cs
+++ b/mcs/class/System.Management/System.Management/ManagementQuery.cs
@@ -37,6 +37,7 @@ namespace System.Management
public abstract class ManagementQuery : ICloneable
{
string sQueryLanguage;
+ string sQueryString;
internal ManagementQuery ()
{
@@ -57,10 +58,10 @@ namespace System.Management
public virtual string QueryString {
get {
- throw new NotImplementedException ();
+ return sQueryString;
}
set {
- throw new NotImplementedException ();
+ sQueryString = value;
}
}