2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.Management / System.Management / RelationshipQuery.cs
blobb9397a30e58c14719390f7a449ceedad2346dfad
1 //
2 // System.Management.RelationshipQuery
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 RelationshipQuery : WqlObjectQuery
35 [MonoTODO]
36 public RelationshipQuery ()
38 throw new NotImplementedException ();
41 [MonoTODO]
42 public RelationshipQuery (string queryOrSourceObject)
44 throw new NotImplementedException ();
47 [MonoTODO]
48 public RelationshipQuery (string sourceObject, string relationshipClass)
50 throw new NotImplementedException ();
53 [MonoTODO]
54 public RelationshipQuery (bool isSchemaQuery, string sourceObject, string relationshipClass, string relationshipQualifier, string thisRole)
56 throw new NotImplementedException ();
59 [MonoTODO]
60 public RelationshipQuery (string sourceObject, string relationshipClass, string relationshipQualifier, 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 RelationshipClass {
81 get { throw new NotImplementedException (); }
82 set { throw new NotImplementedException (); }
85 [MonoTODO]
86 public string RelationshipQualifier {
87 get { throw new NotImplementedException (); }
88 set { throw new NotImplementedException (); }
91 [MonoTODO]
92 public string SourceObject {
93 get { throw new NotImplementedException (); }
94 set { throw new NotImplementedException (); }
97 [MonoTODO]
98 public string ThisRole {
99 get { throw new NotImplementedException (); }
100 set { throw new NotImplementedException (); }
103 // Methods
105 [MonoTODO]
106 protected internal void BuildQuery ()
108 throw new NotImplementedException ();
111 [MonoTODO]
112 public override object Clone ()
114 throw new NotImplementedException ();
117 [MonoTODO]
118 protected internal override void ParseQuery (string query)
120 throw new NotImplementedException ();