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:46:04 +0400
committerAlistair Leslie-Hughes <leslie_alistair@hotmail.com>2013-10-23 01:13:32 +0400
commit596921b77d94a4d3e1bc260cadcf61aeae4c43a9 (patch)
treeb23b2354f0fad89b9599842355130f9c50b7eaa8 /mcs/class/System.Management
parent3be7b103d878f6ad655de8c0eab601ed9f24f8fb (diff)
Implement ManagementQuery QueryLanguage
Diffstat (limited to 'mcs/class/System.Management')
-rw-r--r--mcs/class/System.Management/System.Management/ManagementQuery.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/mcs/class/System.Management/System.Management/ManagementQuery.cs b/mcs/class/System.Management/System.Management/ManagementQuery.cs
index 30787704c7e..c8283d766f2 100644
--- a/mcs/class/System.Management/System.Management/ManagementQuery.cs
+++ b/mcs/class/System.Management/System.Management/ManagementQuery.cs
@@ -36,6 +36,8 @@ namespace System.Management
//[TypeConverter ("")]
public abstract class ManagementQuery : ICloneable
{
+ string sQueryLanguage;
+
internal ManagementQuery ()
{
}
@@ -46,10 +48,10 @@ namespace System.Management
public virtual string QueryLanguage {
get {
- throw new NotImplementedException ();
+ return sQueryLanguage;
}
set {
- throw new NotImplementedException ();
+ sQueryLanguage = value;
}
}