New test.
[mono.git] / mcs / class / System.Management / System.Management / ManagementPath.cs
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 //
9
10 //
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.
29 //
30 using System;
31
32 namespace System.Management
33 {
34         public class ManagementPath : ICloneable
35         {
36                 [MonoTODO]
37                 public ManagementPath ()
38                 {
39                 }
40
41                 [MonoTODO]
42                 public ManagementPath (string path)
43                 {
44                 }
45
46                 [MonoTODO]
47                 public ManagementPath Clone ()
48                 {
49                         throw new NotImplementedException ();
50                 }
51
52                 [MonoTODO]
53                 public void SetAsClass ()
54                 {
55                         throw new NotImplementedException ();
56                 }
57
58                 [MonoTODO]
59                 public void SetAsSingleton ()
60                 {
61                         throw new NotImplementedException ();
62                 }
63
64                 [MonoTODO]
65                 public override string ToString ()
66                 {
67                         throw new NotImplementedException ();
68                 }
69
70                 [MonoTODO]
71                 object ICloneable.Clone ()
72                 {
73                         throw new NotImplementedException ();
74                 }
75
76                 public string ClassName {
77                         [MonoTODO]
78                         get {
79                                 throw new NotImplementedException ();
80                         }
81                         [MonoTODO]
82                         set {
83                                 throw new NotImplementedException ();
84                         }
85                 }
86
87                 public static ManagementPath DefaultPath {
88                         [MonoTODO]
89                         get {
90                                 throw new NotImplementedException ();
91                         }
92                         [MonoTODO]
93                         set {
94                                 throw new NotImplementedException ();
95                         }
96                 }
97
98                 public bool IsClass {
99                         [MonoTODO]
100                         get {
101                                 throw new NotImplementedException ();
102                         }
103                 }
104
105                 public bool IsInstance {
106                         [MonoTODO]
107                         get {
108                                 throw new NotImplementedException ();
109                         }
110                 }
111
112                 public bool IsSingleton {
113                         [MonoTODO]
114                         get {
115                                 throw new NotImplementedException ();
116                         }
117                 }
118
119                 public string NamespacePath {
120                         [MonoTODO]
121                         get {
122                                 throw new NotImplementedException ();
123                         }
124                         [MonoTODO]
125                         set {
126                                 throw new NotImplementedException ();
127                         }
128                 }
129
130                 public string Path {
131                         [MonoTODO]
132                         get {
133                                 throw new NotImplementedException ();
134                         }
135                         [MonoTODO]
136                         set {
137                                 throw new NotImplementedException ();
138                         }
139                 }
140
141                 public string RelativePath {
142                         [MonoTODO]
143                         get {
144                                 throw new NotImplementedException ();
145                         }
146                         [MonoTODO]
147                         set {
148                                 throw new NotImplementedException ();
149                         }
150                 }
151
152                 public string Server {
153                         [MonoTODO]
154                         get {
155                                 throw new NotImplementedException ();
156                         }
157                         [MonoTODO]
158                         set {
159                                 throw new NotImplementedException ();
160                         }
161                 }
162         }
163 }
164