2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.Management / System.Management / ManagementBaseObject.cs
blob857245c4701c334e348f9b205e630074257e374b
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 #if NET_2_0
37 [Serializable]
38 #endif
39 [ToolboxItem (true)]
40 public class ManagementBaseObject : Component, ICloneable, ISerializable
42 internal ManagementBaseObject ()
46 [MonoTODO]
47 protected ManagementBaseObject (SerializationInfo info, StreamingContext context)
49 throw new NotImplementedException ();
52 [MonoTODO]
53 protected virtual void GetObjectData (SerializationInfo info, StreamingContext context)
55 throw new NotImplementedException ();
58 [MonoTODO]
59 public static explicit operator IntPtr (ManagementBaseObject managementObject)
61 throw new NotImplementedException ();
64 [MonoTODO]
65 public virtual object Clone ()
67 throw new NotImplementedException ();
70 [MonoTODO]
71 public bool CompareTo (ManagementBaseObject otherObject, ComparisonSettings settings)
73 throw new NotImplementedException ();
76 [MonoTODO]
77 public override bool Equals (object obj)
79 throw new NotImplementedException ();
82 [MonoTODO]
83 public override int GetHashCode ()
85 throw new NotImplementedException ();
88 [MonoTODO]
89 public object GetPropertyQualifierValue (string propertyName, string qualifierName)
91 throw new NotImplementedException ();
94 [MonoTODO]
95 public object GetPropertyValue (string propertyName)
97 throw new NotImplementedException ();
100 [MonoTODO]
101 public object GetQualifierValue (string qualifierName)
103 throw new NotImplementedException ();
106 [MonoTODO]
107 public string GetText (TextFormat format)
109 throw new NotImplementedException ();
112 [MonoTODO]
113 public void SetPropertyQualifierValue (string propertyName, string qualifierName, object qualifierValue)
115 throw new NotImplementedException ();
118 [MonoTODO]
119 public void SetPropertyValue (string propertyName, object propertyValue)
121 throw new NotImplementedException ();
124 [MonoTODO]
125 public void SetQualifierValue (string qualifierName, object qualifierValue)
127 throw new NotImplementedException ();
130 [MonoTODO]
131 void ISerializable.GetObjectData (SerializationInfo info, StreamingContext context)
133 throw new NotImplementedException ();
136 public virtual ManagementPath ClassPath {
137 [MonoTODO]
138 get {
139 throw new NotImplementedException ();
143 public object this [string propertyName] {
144 [MonoTODO]
145 get {
146 throw new NotImplementedException ();
148 [MonoTODO]
149 set {
150 throw new NotImplementedException ();
154 public virtual PropertyDataCollection Properties {
155 [MonoTODO]
156 get {
157 throw new NotImplementedException ();
161 public virtual QualifierDataCollection Qualifiers {
162 [MonoTODO]
163 get {
164 throw new NotImplementedException ();
168 public virtual PropertyDataCollection SystemProperties {
169 [MonoTODO]
170 get {
171 throw new NotImplementedException ();
175 public void Dispose ()
177 base.Dispose ();