**** Merged from MCS ****
[mono-project.git] / mcs / class / System.Management / System.Management / ManagementPath.cs
blob9061729f9cc802fd2da22ce33ad24551680ff7f7
1 //
2 // System.Management.ManagementPath
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;
32 namespace System.Management
34 public class ManagementPath : ICloneable
36 [MonoTODO]
37 public ManagementPath ()
41 [MonoTODO]
42 public ManagementPath (string path)
46 [MonoTODO]
47 public ManagementPath Clone ()
49 throw new NotImplementedException ();
52 [MonoTODO]
53 public void SetAsClass ()
55 throw new NotImplementedException ();
58 [MonoTODO]
59 public void SetAsSingleton ()
61 throw new NotImplementedException ();
64 [MonoTODO]
65 public override string ToString ()
67 throw new NotImplementedException ();
70 [MonoTODO]
71 object ICloneable.Clone ()
73 throw new NotImplementedException ();
76 public string ClassName {
77 [MonoTODO]
78 get {
79 throw new NotImplementedException ();
81 [MonoTODO]
82 set {
83 throw new NotImplementedException ();
87 public static ManagementPath DefaultPath {
88 [MonoTODO]
89 get {
90 throw new NotImplementedException ();
92 [MonoTODO]
93 set {
94 throw new NotImplementedException ();
98 public bool IsClass {
99 [MonoTODO]
100 get {
101 throw new NotImplementedException ();
105 public bool IsInstance {
106 [MonoTODO]
107 get {
108 throw new NotImplementedException ();
112 public bool IsSingleton {
113 [MonoTODO]
114 get {
115 throw new NotImplementedException ();
119 public string NamespacePath {
120 [MonoTODO]
121 get {
122 throw new NotImplementedException ();
124 [MonoTODO]
125 set {
126 throw new NotImplementedException ();
130 public string Path {
131 [MonoTODO]
132 get {
133 throw new NotImplementedException ();
135 [MonoTODO]
136 set {
137 throw new NotImplementedException ();
141 public string RelativePath {
142 [MonoTODO]
143 get {
144 throw new NotImplementedException ();
146 [MonoTODO]
147 set {
148 throw new NotImplementedException ();
152 public string Server {
153 [MonoTODO]
154 get {
155 throw new NotImplementedException ();
157 [MonoTODO]
158 set {
159 throw new NotImplementedException ();