2fa70475fe3b23e5cd4e9acb842a3a67c7a04547
[mono.git] / mcs / class / System.Management / System.Management / PutOptions.cs
1 //
2 // System.Management.PutOptions
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 PutOptions : ManagementOptions, ICloneable
14         {
15                 public PutOptions ()
16                 {
17                 }
18
19                 public PutOptions (ManagementNamedValueCollection context)
20                 {
21                 }
22
23                 public PutOptions (ManagementNamedValueCollection context,
24                                    TimeSpan timeout,
25                                    bool useAmendedQualifiers,
26                                    PutType putType)
27                 {
28                 }
29
30                 [MonoTODO]
31                 public override object Clone ()
32                 {
33                         throw new NotImplementedException ();
34                 }
35
36                 public PutType Type {
37                         [MonoTODO]
38                         get {
39                                 throw new NotImplementedException ();
40                         }
41                         [MonoTODO]
42                         set {
43                                 throw new NotImplementedException ();
44                         }
45                 }
46
47                 public bool UseAmendedQualifiers {
48                         [MonoTODO]
49                         get {
50                                 throw new NotImplementedException ();
51                         }
52                         [MonoTODO]
53                         set {
54                                 throw new NotImplementedException ();
55                         }
56                 }
57         }
58 }
59