2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.Management / System.Management / ConnectionOptions.cs
blobde3ec743095744a96b61f5499926dab1ce21500e
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 //
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 using System;
31 using System.Security;
33 namespace System.Management
35 public class ConnectionOptions : ManagementOptions, ICloneable
37 [MonoTODO]
38 public ConnectionOptions ()
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)
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)
67 [MonoTODO]
68 public override object Clone ()
70 throw new NotImplementedException ();
73 [MonoTODO]
74 public AuthenticationLevel Authentication
76 get {
77 throw new NotImplementedException ();
79 set {
80 throw new NotImplementedException ();
84 [MonoTODO]
85 public string Authority
87 get {
88 throw new NotImplementedException ();
90 set {
91 throw new NotImplementedException ();
95 [MonoTODO]
96 public bool EnablePrivileges
98 get {
99 throw new NotImplementedException ();
101 set {
102 throw new NotImplementedException ();
106 [MonoTODO]
107 public ImpersonationLevel Impersonation
109 get {
110 throw new NotImplementedException ();
112 set {
113 throw new NotImplementedException ();
117 [MonoTODO]
118 public string Locale
120 get {
121 throw new NotImplementedException ();
123 set {
124 throw new NotImplementedException ();
128 [MonoTODO]
129 public string Password
131 set {
132 throw new NotImplementedException ();
136 [MonoTODO]
137 public string Username
139 get {
140 throw new NotImplementedException ();
142 set {
143 throw new NotImplementedException ();