Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / DBNull.cs / 1305376 / DBNull.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== //////////////////////////////////////////////////////////////////////////////// // Void // This class represents a Missing Variant //////////////////////////////////////////////////////////////////////////////// namespace System { using System; using System.Runtime.Remoting; using System.Runtime.Serialization; using System.Security.Permissions; [System.Runtime.InteropServices.ComVisible(true)] [Serializable] public sealed class DBNull : ISerializable, IConvertible { //Package private constructor private DBNull(){ } private DBNull(SerializationInfo info, StreamingContext context) { throw new NotSupportedException(Environment.GetResourceString("NotSupported_DBNullSerial")); } public static readonly DBNull Value = new DBNull(); [System.Security.SecurityCritical] public void GetObjectData(SerializationInfo info, StreamingContext context) { UnitySerializationHolder.GetUnitySerializationInfo(info, UnitySerializationHolder.NullUnity, null, null); } public override String ToString() { return String.Empty; } public String ToString(IFormatProvider provider) { return String.Empty; } public TypeCode GetTypeCode() { return TypeCode.DBNull; } ///bool IConvertible.ToBoolean(IFormatProvider provider) { throw new InvalidCastException(Environment.GetResourceString("InvalidCast_FromDBNull")); } /// char IConvertible.ToChar(IFormatProvider provider) { throw new InvalidCastException(Environment.GetResourceString("InvalidCast_FromDBNull")); } /// sbyte IConvertible.ToSByte(IFormatProvider provider) { throw new InvalidCastException(Environment.GetResourceString("InvalidCast_FromDBNull")); } /// byte IConvertible.ToByte(IFormatProvider provider) { throw new InvalidCastException(Environment.GetResourceString("InvalidCast_FromDBNull")); } /// short IConvertible.ToInt16(IFormatProvider provider) { throw new InvalidCastException(Environment.GetResourceString("InvalidCast_FromDBNull")); } /// ushort IConvertible.ToUInt16(IFormatProvider provider) { throw new InvalidCastException(Environment.GetResourceString("InvalidCast_FromDBNull")); } /// int IConvertible.ToInt32(IFormatProvider provider) { throw new InvalidCastException(Environment.GetResourceString("InvalidCast_FromDBNull")); } /// uint IConvertible.ToUInt32(IFormatProvider provider) { throw new InvalidCastException(Environment.GetResourceString("InvalidCast_FromDBNull")); } /// long IConvertible.ToInt64(IFormatProvider provider) { throw new InvalidCastException(Environment.GetResourceString("InvalidCast_FromDBNull")); } /// ulong IConvertible.ToUInt64(IFormatProvider provider) { throw new InvalidCastException(Environment.GetResourceString("InvalidCast_FromDBNull")); } /// float IConvertible.ToSingle(IFormatProvider provider) { throw new InvalidCastException(Environment.GetResourceString("InvalidCast_FromDBNull")); } /// double IConvertible.ToDouble(IFormatProvider provider) { throw new InvalidCastException(Environment.GetResourceString("InvalidCast_FromDBNull")); } /// decimal IConvertible.ToDecimal(IFormatProvider provider) { throw new InvalidCastException(Environment.GetResourceString("InvalidCast_FromDBNull")); } /// DateTime IConvertible.ToDateTime(IFormatProvider provider) { throw new InvalidCastException(Environment.GetResourceString("InvalidCast_FromDBNull")); } /// Object IConvertible.ToType(Type type, IFormatProvider provider) { return Convert.DefaultToType((IConvertible)this, type, provider); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MimeParameterWriter.cs
- CharacterShapingProperties.cs
- AssociatedControlConverter.cs
- PathData.cs
- CheckBoxField.cs
- XmlHierarchyData.cs
- DataObjectCopyingEventArgs.cs
- PropertyEmitter.cs
- Dispatcher.cs
- RegexCapture.cs
- Rect3D.cs
- base64Transforms.cs
- EndOfStreamException.cs
- NameValuePermission.cs
- DataControlPagerLinkButton.cs
- ListViewContainer.cs
- TCPListener.cs
- LocalizationComments.cs
- FlowDocumentPaginator.cs
- BitmapEffectInput.cs
- BaseAddressElementCollection.cs
- UrlPath.cs
- CodeBlockBuilder.cs
- TextComposition.cs
- ApplicationServiceHelper.cs
- SecurityPolicySection.cs
- PaginationProgressEventArgs.cs
- NativeWindow.cs
- PageRanges.cs
- ellipse.cs
- HashCodeCombiner.cs
- InputReport.cs
- CopyAction.cs
- OleDbPropertySetGuid.cs
- SqlExpressionNullability.cs
- AssemblyCache.cs
- KeyProperty.cs
- List.cs
- RuntimeConfig.cs
- InputScopeConverter.cs
- SoapMessage.cs
- SliderAutomationPeer.cs
- X509CertificateStore.cs
- ApplicationBuildProvider.cs
- SubMenuStyleCollectionEditor.cs
- Version.cs
- AlternationConverter.cs
- PageContentAsyncResult.cs
- Line.cs
- PathGeometry.cs
- UnmanagedMemoryStream.cs
- MaterializeFromAtom.cs
- ScriptReferenceEventArgs.cs
- XmlSerializationWriter.cs
- MarkupExtensionReturnTypeAttribute.cs
- UserControl.cs
- IssuedTokenClientElement.cs
- FieldNameLookup.cs
- TransformerInfoCollection.cs
- ViewBase.cs
- LocationSectionRecord.cs
- SiteMembershipCondition.cs
- PerspectiveCamera.cs
- MetadataItem.cs
- TableParagraph.cs
- DataGridColumnFloatingHeader.cs
- SeverityFilter.cs
- XPathAncestorIterator.cs
- StringFreezingAttribute.cs
- UniqueEventHelper.cs
- ObjectDataSource.cs
- GetWinFXPath.cs
- DataGridHelper.cs
- InputEventArgs.cs
- SettingsPropertyValueCollection.cs
- KeyFrames.cs
- TableRow.cs
- InfoCardUIAgent.cs
- MonthChangedEventArgs.cs
- WebPartDisplayModeCollection.cs
- FormatSettings.cs
- DomNameTable.cs
- EventLogger.cs
- CommentEmitter.cs
- Group.cs
- RawUIStateInputReport.cs
- ReceiveSecurityHeaderElementManager.cs
- PtsCache.cs
- XmlElement.cs
- ResXFileRef.cs
- DataGridViewButtonColumn.cs
- SortFieldComparer.cs
- GridViewCancelEditEventArgs.cs
- ExtenderProviderService.cs
- EncoderFallback.cs
- MenuItem.cs
- EntitySetBase.cs
- BitmapSourceSafeMILHandle.cs
- DefaultShape.cs
- GridViewAutoFormat.cs