Merge pull request #2260 from xmcclure/fix-testwaitany
[mono.git] / mcs / class / System.Management / System.Management / SelectQuery.cs
1 //
2 // System.Management.SelectQuery
3 //
4 // Author:
5 //      Atsushi Enomoto (atsushi@ximian.com)
6 //
7 // Copyright (C) 2007 Novell, Inc (http://www.novell.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.Collections.Specialized;
31
32 namespace System.Management
33 {
34         public class SelectQuery : WqlObjectQuery
35         {
36                 [MonoTODO]
37                 public SelectQuery ()
38                 {
39                         throw new NotImplementedException ();
40                 }
41                 
42                 [MonoTODO]
43                 public SelectQuery (string queryOrClassName)
44                 {
45                         throw new NotImplementedException ();
46                 }
47                 
48                 [MonoTODO]
49                 public SelectQuery (bool isSchemaQuery, string condition)
50                 {
51                         throw new NotImplementedException ();
52                 }
53                 
54                 [MonoTODO]
55                 public SelectQuery (string className, string condition)
56                 {
57                         throw new NotImplementedException ();
58                 }
59                 
60                 [MonoTODO]
61                 public SelectQuery (string className, string condition, string [] selectedProperties)
62                 {
63                         throw new NotImplementedException ();
64                 }
65                 
66                 // Properties
67                 
68                 [MonoTODO]
69                 public string ClassName {
70                         get { throw new NotImplementedException (); }
71                         set { throw new NotImplementedException (); }
72                 }
73                 
74                 [MonoTODO]
75                 public string Condition {
76                         get { throw new NotImplementedException (); }
77                         set { throw new NotImplementedException (); }
78                 }
79                 
80                 [MonoTODO]
81                 public bool IsSchemaQuery {
82                         get { throw new NotImplementedException (); }
83                         set { throw new NotImplementedException (); }
84                 }
85                 
86                 [MonoTODO]
87                 public override string QueryString {
88                         get { throw new NotImplementedException (); }
89                         set { throw new NotImplementedException (); }
90                 }
91                 
92                 [MonoTODO]
93                 public StringCollection SelectedProperties {
94                         get { throw new NotImplementedException (); }
95                         set { throw new NotImplementedException (); }
96                 }
97
98                 // Methods
99                 
100                 [MonoTODO]
101                 protected internal void BuildQuery ()
102                 {
103                         throw new NotImplementedException ();
104                 }
105                 
106                 [MonoTODO]
107                 public override object Clone ()
108                 {
109                         throw new NotImplementedException ();
110                 }
111                 
112                 [MonoTODO]
113                 protected internal override void ParseQuery (string query)
114                 {
115                         throw new NotImplementedException ();
116                 }
117                 
118         }
119 }
120