2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / class / corlib / System / DBNull.cs
blobe730cc8599dbc17c8eca068f516552de363f12a6
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
13 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
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.
35 using System.Runtime.Serialization;
36 using System.Runtime.InteropServices;
38 namespace System
40 [Serializable]
41 [ComVisible (true)]
42 public sealed class DBNull : ISerializable, IConvertible
44 // Fields
45 public static readonly DBNull Value = new DBNull ();
47 // Private constructor
48 private DBNull ()
52 private DBNull (SerializationInfo info, StreamingContext context)
54 throw new NotSupportedException ();
57 // Methods
58 public void GetObjectData (SerializationInfo info, StreamingContext context)
60 UnitySerializationHolder.GetDBNullData (this, info, context);
63 public TypeCode GetTypeCode ()
65 return TypeCode.DBNull;
68 bool IConvertible.ToBoolean (IFormatProvider provider)
70 throw new InvalidCastException ();
73 byte IConvertible.ToByte (IFormatProvider provider)
75 throw new InvalidCastException ();
78 char IConvertible.ToChar (IFormatProvider provider)
80 throw new InvalidCastException ();
83 DateTime IConvertible.ToDateTime (IFormatProvider provider)
85 throw new InvalidCastException ();
88 decimal IConvertible.ToDecimal (IFormatProvider provider)
90 throw new InvalidCastException ();
93 double IConvertible.ToDouble (IFormatProvider provider)
95 throw new InvalidCastException ();
98 short IConvertible.ToInt16 (IFormatProvider provider)
100 throw new InvalidCastException ();
103 int IConvertible.ToInt32 (IFormatProvider provider)
105 throw new InvalidCastException ();
108 long IConvertible.ToInt64 (IFormatProvider provider)
110 throw new InvalidCastException ();
113 sbyte IConvertible.ToSByte (IFormatProvider provider)
115 throw new InvalidCastException ();
118 float IConvertible.ToSingle (IFormatProvider provider)
120 throw new InvalidCastException ();
123 object IConvertible.ToType (Type targetType, IFormatProvider provider)
125 if (targetType == typeof (string))
126 return String.Empty;
127 if (targetType == typeof (DBNull))
128 return this;
129 throw new InvalidCastException ();
132 ushort IConvertible.ToUInt16 (IFormatProvider provider)
134 throw new InvalidCastException ();
137 uint IConvertible.ToUInt32 (IFormatProvider provider)
139 throw new InvalidCastException ();
142 ulong IConvertible.ToUInt64 (IFormatProvider provider)
144 throw new InvalidCastException ();
147 public override string ToString ()
149 return String.Empty;
152 public string ToString (IFormatProvider provider)
154 return String.Empty;