2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.Management / System.Management / QualifierData.cs
blob524b651a370797edb6999241ade10ecba4f2b948
1 //
2 // System.Management.QualifierData
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 namespace System.Management
32 public class QualifierData
34 internal QualifierData ()
38 public bool IsAmended {
39 [MonoTODO]
40 get {
41 throw new NotImplementedException ();
43 [MonoTODO]
44 set {
45 throw new NotImplementedException ();
49 public bool IsLocal {
50 [MonoTODO]
51 get {
52 throw new NotImplementedException ();
56 public bool IsOverridable {
57 [MonoTODO]
58 get {
59 throw new NotImplementedException ();
61 [MonoTODO]
62 set {
63 throw new NotImplementedException ();
67 public string Name {
68 [MonoTODO]
69 get {
70 throw new NotImplementedException ();
74 public bool PropagatesToInstance {
75 [MonoTODO]
76 get {
77 throw new NotImplementedException ();
79 [MonoTODO]
80 set {
81 throw new NotImplementedException ();
85 public bool PropagatesToSubclass {
86 [MonoTODO]
87 get {
88 throw new NotImplementedException ();
90 [MonoTODO]
91 set {
92 throw new NotImplementedException ();
96 public object Value {
97 [MonoTODO]
98 get {
99 throw new NotImplementedException ();
101 [MonoTODO]
102 set {
103 throw new NotImplementedException ();