Merge pull request #3012 from marek-safar/rs-Net
[mono.git] / mcs / class / System.Management / System.Management / ConnectionOptions.cs
index e88cc78608c82b742c74f56722ccd1d0848e5b2b..de3ec743095744a96b61f5499926dab1ce21500e 100644 (file)
@@ -28,6 +28,8 @@
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 using System;
+using System.Security;
+
 namespace System.Management
 {
        public class ConnectionOptions : ManagementOptions, ICloneable
@@ -50,6 +52,18 @@ namespace System.Management
                {
                }
 
+               public ConnectionOptions (string locale,
+                                         string username,
+                                         SecureString password,
+                                         string authority,
+                                         ImpersonationLevel impersonation,
+                                         AuthenticationLevel authentication,
+                                         bool enablePrivileges,
+                                         ManagementNamedValueCollection context,
+                                         TimeSpan timeout)
+               {
+               }
+               
                [MonoTODO]
                public override object Clone ()
                {