1eb405974fe39c88964807c957be012b54ad92a7
[mono.git] / mcs / class / System.Management / System.Management / InvokeMethodOptions.cs
1 //
2 // System.Management.InvokeMethodOptions
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //
7 // (C) 2003 Ximian, Inc (http://www.ximian.com)
8 //
9 using System;
10
11 namespace System.Management
12 {
13         public class InvokeMethodOptions : ManagementOptions, ICloneable
14         {
15                 [MonoTODO]
16                 public InvokeMethodOptions ()
17                 {
18                 }
19
20                 [MonoTODO]
21                 public InvokeMethodOptions (ManagementNamedValueCollection context, TimeSpan timeout)
22                 {
23                 }
24
25                 [MonoTODO]
26                 public override object Clone ()
27                 {
28                         throw new NotImplementedException ();
29                 }
30         }
31 }
32