2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.Management / System.Management / RelatedObjectQuery.cs
blob806bdd9da186fe5329ed7ca2a640631d3f071646
1 //
2 // System.Management.RelatedObjectQuery
3 //
4 // Author:
5 // Atsushi Enomoto (atsushi@ximian.com)
6 //
7 // Copyright (C) 2007 Novell, Inc (http://www.novell.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.
31 namespace System.Management
33 public class RelatedObjectQuery : WqlObjectQuery
35 [MonoTODO]
36 public RelatedObjectQuery ()
38 throw new NotImplementedException ();
41 [MonoTODO]
42 public RelatedObjectQuery (string queryOrSourceObject)
44 throw new NotImplementedException ();
47 [MonoTODO]
48 public RelatedObjectQuery (string sourceObject, string relatedClass)
50 throw new NotImplementedException ();
53 [MonoTODO]
54 public RelatedObjectQuery (bool isSchemaQuery, string sourceObject, string relatedClass, string relationshipClass, string relatedQualifier, string relationshipQualifier, string relatedRole, string thisRole)
56 throw new NotImplementedException ();
59 [MonoTODO]
60 public RelatedObjectQuery (string sourceObject, string relatedClass, string relationshipClass, string relatedQualifier, string relationshipQualifier, string relatedRole, string thisRole, bool classDefinitionsOnly)
62 throw new NotImplementedException ();
65 // Properties
67 [MonoTODO]
68 public bool ClassDefinitionsOnly {
69 get { throw new NotImplementedException (); }
70 set { throw new NotImplementedException (); }
73 [MonoTODO]
74 public bool IsSchemaQuery {
75 get { throw new NotImplementedException (); }
76 set { throw new NotImplementedException (); }
79 [MonoTODO]
80 public string RelatedClass {
81 get { throw new NotImplementedException (); }
82 set { throw new NotImplementedException (); }
85 [MonoTODO]
86 public string RelatedQualifier {
87 get { throw new NotImplementedException (); }
88 set { throw new NotImplementedException (); }
91 [MonoTODO]
92 public string RelatedRole {
93 get { throw new NotImplementedException (); }
94 set { throw new NotImplementedException (); }
97 [MonoTODO]
98 public string RelationshipClass {
99 get { throw new NotImplementedException (); }
100 set { throw new NotImplementedException (); }
103 [MonoTODO]
104 public string RelationshipQualifier {
105 get { throw new NotImplementedException (); }
106 set { throw new NotImplementedException (); }
109 [MonoTODO]
110 public string SourceObject {
111 get { throw new NotImplementedException (); }
112 set { throw new NotImplementedException (); }
115 [MonoTODO]
116 public string ThisRole {
117 get { throw new NotImplementedException (); }
118 set { throw new NotImplementedException (); }
121 // Methods
123 [MonoTODO]
124 protected internal void BuildQuery ()
126 throw new NotImplementedException ();
129 [MonoTODO]
130 public override object Clone ()
132 throw new NotImplementedException ();
135 [MonoTODO]
136 protected internal override void ParseQuery (string query)
138 throw new NotImplementedException ();