Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Data / System / Data / Common / dbdatarecord.cs / 2 / dbdatarecord.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// [....]
// [....]
//-----------------------------------------------------------------------------
namespace System.Data.Common {
using System.ComponentModel;
#if WINFSInternalOnly
internal
#else
public
#endif
abstract class DbDataRecord : ICustomTypeDescriptor, IDataRecord {
protected DbDataRecord() : base() {
}
public abstract int FieldCount {
get;
}
public abstract object this[int i] {
get;
}
public abstract object this[string name] {
get;
}
public abstract bool GetBoolean(int i);
public abstract byte GetByte(int i);
public abstract long GetBytes(int i, long dataIndex, byte[] buffer, int bufferIndex, int length);
public abstract char GetChar(int i);
public abstract long GetChars(int i, long dataIndex, char[] buffer, int bufferIndex, int length);
public IDataReader GetData(int i) {
return GetDbDataReader(i);
}
virtual protected DbDataReader GetDbDataReader(int i) {
// NOTE: This method is virtual because we're required to implement
// it however most providers won't support it. Only the OLE DB
// provider supports it right now, and they can override it.
throw ADP.NotSupported();
}
public abstract string GetDataTypeName(int i);
public abstract DateTime GetDateTime(int i);
public abstract Decimal GetDecimal(int i);
public abstract double GetDouble(int i);
public abstract Type GetFieldType(int i);
public abstract float GetFloat(int i);
public abstract Guid GetGuid(int i);
public abstract Int16 GetInt16(int i);
public abstract Int32 GetInt32(int i);
public abstract Int64 GetInt64(int i);
public abstract string GetName(int i);
public abstract int GetOrdinal(string name);
public abstract string GetString(int i);
public abstract object GetValue(int i);
public abstract int GetValues(object[] values);
public abstract bool IsDBNull(int i);
//
// ICustomTypeDescriptor
//
AttributeCollection ICustomTypeDescriptor.GetAttributes() {
return new AttributeCollection((Attribute[])null);
}
string ICustomTypeDescriptor.GetClassName() {
return null;
}
string ICustomTypeDescriptor.GetComponentName() {
return null;
}
TypeConverter ICustomTypeDescriptor.GetConverter() {
return null;
}
EventDescriptor ICustomTypeDescriptor.GetDefaultEvent() {
return null;
}
PropertyDescriptor ICustomTypeDescriptor.GetDefaultProperty() {
return null;
}
object ICustomTypeDescriptor.GetEditor(Type editorBaseType) {
return null;
}
EventDescriptorCollection ICustomTypeDescriptor.GetEvents() {
return new EventDescriptorCollection(null);
}
EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[] attributes) {
return new EventDescriptorCollection(null);
}
PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() {
return((ICustomTypeDescriptor)this).GetProperties(null);
}
PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) {
return new PropertyDescriptorCollection(null);
}
object ICustomTypeDescriptor.GetPropertyOwner(PropertyDescriptor pd) {
return this;
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HostingEnvironmentException.cs
- AppSecurityManager.cs
- XmlSerializationReader.cs
- ColumnCollection.cs
- CrossSiteScriptingValidation.cs
- Profiler.cs
- ComplexType.cs
- PrivateUnsafeNativeCompoundFileMethods.cs
- NavigationWindow.cs
- ViewCellRelation.cs
- ApplicationInfo.cs
- TextEditorDragDrop.cs
- Win32.cs
- ListSurrogate.cs
- SubMenuStyleCollection.cs
- login.cs
- GradientSpreadMethodValidation.cs
- BlurEffect.cs
- CompressEmulationStream.cs
- IISMapPath.cs
- SafeCoTaskMem.cs
- AuthorizationSection.cs
- TextBox.cs
- ListViewGroupConverter.cs
- ProviderSettings.cs
- DispatcherFrame.cs
- BindingCollection.cs
- PrintDialog.cs
- MeasureItemEvent.cs
- PieceDirectory.cs
- ConditionalAttribute.cs
- SecurityPolicySection.cs
- RequestCachingSection.cs
- IDispatchConstantAttribute.cs
- SqlRowUpdatingEvent.cs
- UnsupportedPolicyOptionsException.cs
- MimePart.cs
- GridItem.cs
- QueryMatcher.cs
- MimeWriter.cs
- DataGridViewComboBoxColumn.cs
- VirtualPath.cs
- DetailsViewDeleteEventArgs.cs
- XmlUTF8TextWriter.cs
- GeometryDrawing.cs
- SizeLimitedCache.cs
- ClockController.cs
- TypeDescriptor.cs
- MiniCustomAttributeInfo.cs
- TagPrefixAttribute.cs
- SqlTriggerContext.cs
- PartialCachingControl.cs
- RetrieveVirtualItemEventArgs.cs
- InvokePatternIdentifiers.cs
- TimelineGroup.cs
- DragCompletedEventArgs.cs
- LogReservationCollection.cs
- RegionInfo.cs
- SamlAssertionKeyIdentifierClause.cs
- NavigationService.cs
- Events.cs
- RtfToXamlLexer.cs
- SecurityTokenAttachmentMode.cs
- TableRowGroup.cs
- _CacheStreams.cs
- CompositeClientFormatter.cs
- ToolStripContainer.cs
- InkCanvasFeedbackAdorner.cs
- Parameter.cs
- NonVisualControlAttribute.cs
- DesignerAttribute.cs
- ByteAnimationUsingKeyFrames.cs
- PhysicalOps.cs
- Stream.cs
- ServiceAuthorizationManager.cs
- WindowsHyperlink.cs
- WorkerRequest.cs
- PageThemeBuildProvider.cs
- Misc.cs
- ThreadAbortException.cs
- BulletedList.cs
- SystemNetworkInterface.cs
- QuaternionAnimation.cs
- FormatterServices.cs
- FormViewInsertedEventArgs.cs
- filewebrequest.cs
- XmlTextReaderImplHelpers.cs
- HandlerBase.cs
- ExpandedWrapper.cs
- Link.cs
- MultiAsyncResult.cs
- SortKey.cs
- TransformPattern.cs
- PropertyChangedEventManager.cs
- TypeSystem.cs
- AddInIpcChannel.cs
- LinkClickEvent.cs
- UnaryNode.cs
- IntSecurity.cs
- GeometryCollection.cs