remove warning
[mono.git] / mcs / class / corlib / System / DBNull.cs
1 //
2 // System.DBNull.cs
3 //
4 // Authors:
5 //   Duncan Mak (duncan@ximian.com)
6 //   Ben Maurer (bmaurer@users.sourceforge.net)
7 //
8 // (C) 2002 Ximian, Inc. http://www.ximian.com
9 // (C) 2003 Ben Maurer
10 //
11
12 //
13 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
14 //
15 // Permission is hereby granted, free of charge, to any person obtaining
16 // a copy of this software and associated documentation files (the
17 // "Software"), to deal in the Software without restriction, including
18 // without limitation the rights to use, copy, modify, merge, publish,
19 // distribute, sublicense, and/or sell copies of the Software, and to
20 // permit persons to whom the Software is furnished to do so, subject to
21 // the following conditions:
22 // 
23 // The above copyright notice and this permission notice shall be
24 // included in all copies or substantial portions of the Software.
25 // 
26 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
27 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
28 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
29 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
30 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
31 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
32 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
33 //
34
35 using System.Runtime.Serialization;
36 using System.Runtime.InteropServices;
37
38 namespace System
39 {
40         [Serializable]
41 #if NET_2_0
42         [ComVisible (true)]
43 #endif
44         public sealed class DBNull : ISerializable, IConvertible
45         {
46                 // Fields
47                 public static readonly DBNull Value = new DBNull ();
48
49                 // Private constructor
50                 private DBNull ()
51                 {
52                 }
53
54                 private DBNull (SerializationInfo info, StreamingContext context)
55                 {
56                         throw new NotSupportedException ();
57                 }
58
59                 // Methods
60                 public void GetObjectData (SerializationInfo info, StreamingContext context)
61                 {
62                         UnitySerializationHolder.GetDBNullData (this, info, context);
63                 }
64
65                 public TypeCode GetTypeCode ()
66                 {
67                         return TypeCode.DBNull;
68                 }
69
70                 bool IConvertible.ToBoolean (IFormatProvider provider)
71                 {
72                         throw new InvalidCastException ();
73                 }                       
74
75                 byte IConvertible.ToByte (IFormatProvider provider)
76                 {
77                         throw new InvalidCastException ();
78                 }
79
80                 char IConvertible.ToChar (IFormatProvider provider)
81                 {
82                         throw new InvalidCastException ();
83                 }
84
85                 DateTime IConvertible.ToDateTime (IFormatProvider provider)
86                 {
87                         throw new InvalidCastException ();
88                 }
89
90                 decimal IConvertible.ToDecimal (IFormatProvider provider)
91                 {
92                         throw new InvalidCastException ();
93                 }
94                 
95                 double IConvertible.ToDouble (IFormatProvider provider)
96                 {
97                         throw new InvalidCastException ();
98                 }
99
100                 short IConvertible.ToInt16 (IFormatProvider provider)
101                 {
102                         throw new InvalidCastException ();
103                 }
104
105                 int IConvertible.ToInt32 (IFormatProvider provider)
106                 {
107                         throw new InvalidCastException ();
108                 }
109
110                 long IConvertible.ToInt64 (IFormatProvider provider)
111                 {
112                         throw new InvalidCastException ();
113                 }
114
115                 sbyte IConvertible.ToSByte (IFormatProvider provider)
116                 {
117                         throw new InvalidCastException ();
118                 }
119
120                 float IConvertible.ToSingle (IFormatProvider provider)
121                 {
122                         throw new InvalidCastException ();
123                 }
124
125                 object IConvertible.ToType (Type type, IFormatProvider provider)
126                 {
127                         if (type == typeof (string))
128                                 return String.Empty;
129                         throw new InvalidCastException ();
130                 }
131
132                 ushort IConvertible.ToUInt16 (IFormatProvider provider)
133                 {
134                         throw new InvalidCastException ();
135                 }
136
137                 uint IConvertible.ToUInt32 (IFormatProvider provider)
138                 {
139                         throw new InvalidCastException ();
140                 }
141
142                 ulong IConvertible.ToUInt64 (IFormatProvider provider)
143                 {
144                         throw new InvalidCastException ();
145                 }
146
147                 public override string ToString ()
148                 {
149                         return String.Empty;
150                 }
151
152                 public string ToString (IFormatProvider provider)
153                 {
154                         return String.Empty;
155                 }
156         }
157 }