(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Management / System.Management / ManagementBaseObject.cs
blobc0ed2e0b7a8ce9deae88922e11a84023cd5a79b9
1 //
2 // System.Management.ManagementBaseObject
3 //
4 // Authors:
5 // Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //
7 // (C) 2003 Ximian, Inc (http://www.ximian.com)
8 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 //
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 //
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 using System;
31 using System.ComponentModel;
32 using System.Runtime.Serialization;
34 namespace System.Management
36 public class ManagementBaseObject : Component, ICloneable, ISerializable
38 internal ManagementBaseObject ()
42 [MonoTODO]
43 public virtual object Clone ()
45 throw new NotImplementedException ();
48 [MonoTODO]
49 public bool CompareTo (ManagementBaseObject otherObject, ComparisonSettings settings)
51 throw new NotImplementedException ();
54 [MonoTODO]
55 public override bool Equals (object obj)
57 throw new NotImplementedException ();
60 [MonoTODO]
61 public override int GetHashCode ()
63 throw new NotImplementedException ();
66 [MonoTODO]
67 public object GetPropertyQualifierValue (string propertyName, string qualifierName)
69 throw new NotImplementedException ();
72 [MonoTODO]
73 public object GetPropertyValue (string propertyName)
75 throw new NotImplementedException ();
78 [MonoTODO]
79 public object GetQualifierValue (string qualifierName)
81 throw new NotImplementedException ();
84 [MonoTODO]
85 public string GetText (TextFormat format)
87 throw new NotImplementedException ();
90 [MonoTODO]
91 public void SetPropertyQualifierValue (string propertyName, string qualifierName, object qualifierValue)
93 throw new NotImplementedException ();
96 [MonoTODO]
97 public void SetPropertyValue (string propertyName, object propertyValue)
99 throw new NotImplementedException ();
102 [MonoTODO]
103 public void SetQualifierValue (string qualifierName, object qualifierValue)
105 throw new NotImplementedException ();
108 [MonoTODO]
109 void ISerializable.GetObjectData (SerializationInfo info, StreamingContext context)
111 throw new NotImplementedException ();
114 public virtual ManagementPath ClassPath {
115 [MonoTODO]
116 get {
117 throw new NotImplementedException ();
121 public object this [string propertyName] {
122 [MonoTODO]
123 get {
124 throw new NotImplementedException ();
126 [MonoTODO]
127 set {
128 throw new NotImplementedException ();
132 public virtual PropertyDataCollection Properties {
133 [MonoTODO]
134 get {
135 throw new NotImplementedException ();
139 public virtual QualifierDataCollection Qualifiers {
140 [MonoTODO]
141 get {
142 throw new NotImplementedException ();
146 public virtual PropertyDataCollection SystemProperties {
147 [MonoTODO]
148 get {
149 throw new NotImplementedException ();