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
- RegexBoyerMoore.cs
- CacheModeConverter.cs
- SqlParameter.cs
- EntityDataSourceContextCreatedEventArgs.cs
- WebBrowserNavigatedEventHandler.cs
- CatalogPart.cs
- RowUpdatingEventArgs.cs
- SymbolEqualComparer.cs
- PrintEvent.cs
- ExpandCollapseProviderWrapper.cs
- WebPartEditorApplyVerb.cs
- QueryTaskGroupState.cs
- ListBoxItemWrapperAutomationPeer.cs
- HttpDictionary.cs
- OleDbErrorCollection.cs
- PrimitiveSchema.cs
- ScriptManager.cs
- RoleManagerModule.cs
- GroupBoxRenderer.cs
- SerialErrors.cs
- XmlStreamStore.cs
- IdentityModelStringsVersion1.cs
- CharacterMetrics.cs
- Compress.cs
- RangeValuePatternIdentifiers.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- DataGridColumnsPage.cs
- ValuePattern.cs
- DbTransaction.cs
- brushes.cs
- ObfuscationAttribute.cs
- DbQueryCommandTree.cs
- ClockGroup.cs
- WinFormsComponentEditor.cs
- WindowInteropHelper.cs
- ObjectViewListener.cs
- MessageSecurityOverTcpElement.cs
- PrintPreviewDialog.cs
- NestedContainer.cs
- DataPagerCommandEventArgs.cs
- XNodeNavigator.cs
- ListParagraph.cs
- ErrorStyle.cs
- MessageQueue.cs
- TableLayoutPanelCellPosition.cs
- HttpConfigurationContext.cs
- Control.cs
- ComPlusInstanceProvider.cs
- DataBoundControlAdapter.cs
- MissingManifestResourceException.cs
- _AuthenticationState.cs
- CompositeDesignerAccessibleObject.cs
- TypedElement.cs
- TextEditor.cs
- basevalidator.cs
- ImageSourceTypeConverter.cs
- SqlGenerator.cs
- PropertyManager.cs
- QuaternionIndependentAnimationStorage.cs
- SimpleBitVector32.cs
- ValueTypeFieldReference.cs
- ValidationHelper.cs
- AppDomainEvidenceFactory.cs
- InfoCardSymmetricAlgorithm.cs
- XmlStreamNodeWriter.cs
- ByteAnimationUsingKeyFrames.cs
- TextTreeFixupNode.cs
- KeyValueSerializer.cs
- CurrentChangingEventManager.cs
- HttpRuntime.cs
- HealthMonitoringSection.cs
- DbExpressionVisitor.cs
- LinqExpressionNormalizer.cs
- UnknownBitmapDecoder.cs
- XmlText.cs
- PassportPrincipal.cs
- BitmapEffectDrawingContextState.cs
- XPathExpr.cs
- TextTreeTextBlock.cs
- StatusBarAutomationPeer.cs
- AvTraceDetails.cs
- CSharpCodeProvider.cs
- PersonalizationStateInfo.cs
- ChannelEndpointElement.cs
- HitTestParameters3D.cs
- TabPanel.cs
- XamlStyleSerializer.cs
- StringFunctions.cs
- EntityDataSourceWizardForm.cs
- ConfigurationManagerHelper.cs
- GAC.cs
- TargetControlTypeCache.cs
- ControlAdapter.cs
- HttpResponseWrapper.cs
- DocumentSchemaValidator.cs
- XNodeNavigator.cs
- _ConnectStream.cs
- FileVersion.cs
- XmlTextReaderImpl.cs
- TemplateXamlParser.cs