(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / DataObject.cs
bloba167f520aa28c8a25cd6051b2c082dce77c0ff5e
1 //
2 // System.Windows.Forms.DataObject
3 //
4 // Author:
5 // stubbed out by Richard Baumann (biochem333@nyc.rr.com)
6 // Dennis Hayes (dennish@Raytek.com)
7 //
8 // (C) Ximian, Inc., 2002
9 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 //
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 //
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 using System.Runtime.InteropServices;
32 namespace System.Windows.Forms {
34 // <summary>
35 // Implements a basic data transfer mechanism.
36 // </summary>
37 [ClassInterface(ClassInterfaceType.None)]
38 public class DataObject : IDataObject {
41 // --- Constructors/Destructors
43 [MonoTODO]
44 //[ClassInterface(ClassInterfaceType.None)]
45 public DataObject() : base()
48 [MonoTODO]
49 //[ClassInterface(ClassInterfaceType.None)]
50 public DataObject(object data) : this()
54 [MonoTODO]
55 //[ClassInterface(ClassInterfaceType.None)]
56 public DataObject(string format, object data) : this(data)
61 // --- Public Methods
63 [MonoTODO]
64 //[ClassInterface(ClassInterfaceType.None)]
65 public virtual object GetData(string format)
67 throw new NotImplementedException ();
69 [MonoTODO]
70 //[ClassInterface(ClassInterfaceType.None)]
71 public virtual object GetData(Type format)
73 throw new NotImplementedException ();
75 [MonoTODO]
76 //[ClassInterface(ClassInterfaceType.None)]
77 public virtual object GetData(string format, bool autoConvert)
79 throw new NotImplementedException ();
81 [MonoTODO]
82 //[ClassInterface(ClassInterfaceType.None)]
83 public virtual bool GetDataPresent(string format)
85 throw new NotImplementedException ();
87 [MonoTODO]
88 //[ClassInterface(ClassInterfaceType.None)]
89 public virtual bool GetDataPresent(Type format)
91 throw new NotImplementedException ();
93 [MonoTODO]
94 //[ClassInterface(ClassInterfaceType.None)]
95 public virtual bool GetDataPresent(string format, bool autoConvert)
97 throw new NotImplementedException ();
99 [MonoTODO]
100 //[ClassInterface(ClassInterfaceType.None)]
101 public virtual string[] GetFormats()
103 throw new NotImplementedException ();
105 [MonoTODO]
106 //[ClassInterface(ClassInterfaceType.None)]
107 public virtual string[] GetFormats(bool autoConvert)
109 throw new NotImplementedException ();
111 [MonoTODO]
112 //[ClassInterface(ClassInterfaceType.None)]
113 public virtual void SetData(object data)
115 throw new NotImplementedException ();
117 [MonoTODO]
118 //[ClassInterface(ClassInterfaceType.None)]
119 public virtual void SetData(string format, object data)
121 throw new NotImplementedException ();
123 [MonoTODO]
124 //[ClassInterface(ClassInterfaceType.None)]
125 public virtual void SetData(Type format, object data)
127 throw new NotImplementedException ();
129 [MonoTODO]
130 //[ClassInterface(ClassInterfaceType.None)]
131 public virtual void SetData(string format, bool autoConvert, object data)
133 throw new NotImplementedException ();