[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / class / System.Management / System.Management / ManagementBaseObject.cs
blobdfa484d017486f2d7b47c83508db25e2cc337155
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 [Serializable]
37 [ToolboxItem (true)]
38 public class ManagementBaseObject : Component, ICloneable, ISerializable
40 internal ManagementBaseObject ()
44 [MonoTODO]
45 protected ManagementBaseObject (SerializationInfo info, StreamingContext context)
47 throw new NotImplementedException ();
50 [MonoTODO]
51 protected virtual void GetObjectData (SerializationInfo info, StreamingContext context)
53 throw new NotImplementedException ();
56 [MonoTODO]
57 public static explicit operator IntPtr (ManagementBaseObject managementObject)
59 throw new NotImplementedException ();
62 [MonoTODO]
63 public virtual object Clone ()
65 throw new NotImplementedException ();
68 [MonoTODO]
69 public bool CompareTo (ManagementBaseObject otherObject, ComparisonSettings settings)
71 throw new NotImplementedException ();
74 [MonoTODO]
75 public override bool Equals (object obj)
77 throw new NotImplementedException ();
80 [MonoTODO]
81 public override int GetHashCode ()
83 throw new NotImplementedException ();
86 [MonoTODO]
87 public object GetPropertyQualifierValue (string propertyName, string qualifierName)
89 throw new NotImplementedException ();
92 [MonoTODO]
93 public object GetPropertyValue (string propertyName)
95 throw new NotImplementedException ();
98 [MonoTODO]
99 public object GetQualifierValue (string qualifierName)
101 throw new NotImplementedException ();
104 [MonoTODO]
105 public string GetText (TextFormat format)
107 throw new NotImplementedException ();
110 [MonoTODO]
111 public void SetPropertyQualifierValue (string propertyName, string qualifierName, object qualifierValue)
113 throw new NotImplementedException ();
116 [MonoTODO]
117 public void SetPropertyValue (string propertyName, object propertyValue)
119 throw new NotImplementedException ();
122 [MonoTODO]
123 public void SetQualifierValue (string qualifierName, object qualifierValue)
125 throw new NotImplementedException ();
128 [MonoTODO]
129 void ISerializable.GetObjectData (SerializationInfo info, StreamingContext context)
131 throw new NotImplementedException ();
134 public virtual ManagementPath ClassPath {
135 [MonoTODO]
136 get {
137 throw new NotImplementedException ();
141 public object this [string propertyName] {
142 [MonoTODO]
143 get {
144 throw new NotImplementedException ();
146 [MonoTODO]
147 set {
148 throw new NotImplementedException ();
152 public virtual PropertyDataCollection Properties {
153 [MonoTODO]
154 get {
155 throw new NotImplementedException ();
159 public virtual QualifierDataCollection Qualifiers {
160 [MonoTODO]
161 get {
162 throw new NotImplementedException ();
166 public virtual PropertyDataCollection SystemProperties {
167 [MonoTODO]
168 get {
169 throw new NotImplementedException ();
173 public void Dispose ()
175 base.Dispose ();