API updates from Moma
[mono.git] / mcs / class / System.Management / System.Management / ConnectionOptions.cs
1 //
2 // System.Management.ConnectionOptions
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 using System.Security;
32
33 namespace System.Management
34 {
35         public class ConnectionOptions : ManagementOptions, ICloneable
36         {
37                 [MonoTODO]
38                 public ConnectionOptions ()
39                 {
40                 }
41
42                 [MonoTODO]
43                 public ConnectionOptions (string locale,
44                                           string username,
45                                           string password,
46                                           string authority,
47                                           ImpersonationLevel impersonation,
48                                           AuthenticationLevel authentication,
49                                           bool enablePrivileges,
50                                           ManagementNamedValueCollection context,
51                                           TimeSpan timeout)
52                 {
53                 }
54
55                 public ConnectionOptions (string locale,
56                                           string username,
57                                           SecureString password,
58                                           string authority,
59                                           ImpersonationLevel impersonation,
60                                           AuthenticationLevel authentication,
61                                           bool enablePrivileges,
62                                           ManagementNamedValueCollection context,
63                                           TimeSpan timeout)
64                 {
65                 }
66                 
67                 [MonoTODO]
68                 public override object Clone ()
69                 {
70                         throw new NotImplementedException ();
71                 }
72
73                 [MonoTODO]
74                 public AuthenticationLevel Authentication
75                 {
76                         get {
77                                 throw new NotImplementedException ();
78                         }
79                         set {
80                                 throw new NotImplementedException ();
81                         }
82                 }
83
84                 [MonoTODO]
85                 public string Authority
86                 {
87                         get {
88                                 throw new NotImplementedException ();
89                         }
90                         set {
91                                 throw new NotImplementedException ();
92                         }
93                 }
94
95                 [MonoTODO]
96                 public bool EnablePrivileges
97                 {
98                         get {
99                                 throw new NotImplementedException ();
100                         }
101                         set {
102                                 throw new NotImplementedException ();
103                         }
104                 }
105
106                 [MonoTODO]
107                 public ImpersonationLevel Impersonation
108                 {
109                         get {
110                                 throw new NotImplementedException ();
111                         }
112                         set {
113                                 throw new NotImplementedException ();
114                         }
115                 }
116
117                 [MonoTODO]
118                 public string Locale
119                 {
120                         get {
121                                 throw new NotImplementedException ();
122                         }
123                         set {
124                                 throw new NotImplementedException ();
125                         }
126                 }
127
128                 [MonoTODO]
129                 public string Password
130                 {
131                         set {
132                                 throw new NotImplementedException ();
133                         }
134                 }
135
136                 [MonoTODO]
137                 public string Username
138                 {
139                         get {
140                                 throw new NotImplementedException ();
141                         }
142                         set {
143                                 throw new NotImplementedException ();
144                         }
145                 }
146         }
147 }
148