Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Data / System / Data / Common / dbdatarecord.cs / 1 / 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.
//
// [....]
// [....]
//-----------------------------------------------------------------------------
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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlQueryContext.cs
- ListSortDescription.cs
- ChangeProcessor.cs
- UnmanagedMemoryStream.cs
- TemplateControlParser.cs
- Page.cs
- RawStylusInputReport.cs
- Rect3DValueSerializer.cs
- Symbol.cs
- CancellationTokenRegistration.cs
- BaseHashHelper.cs
- AssemblyBuilderData.cs
- StringKeyFrameCollection.cs
- TextServicesHost.cs
- AnnouncementInnerClientCD1.cs
- IRCollection.cs
- Object.cs
- AttributeTableBuilder.cs
- FileDialogPermission.cs
- ListChangedEventArgs.cs
- DesignTimeParseData.cs
- ViewgenGatekeeper.cs
- TdsParserStaticMethods.cs
- GeometryModel3D.cs
- CountdownEvent.cs
- PaintEvent.cs
- ColumnMapVisitor.cs
- Membership.cs
- CellCreator.cs
- ConfigUtil.cs
- X509ScopedServiceCertificateElementCollection.cs
- ErrorFormatter.cs
- oledbmetadatacolumnnames.cs
- MediaPlayer.cs
- DiagnosticEventProvider.cs
- TextSchema.cs
- ServicesUtilities.cs
- HtmlForm.cs
- GenericNameHandler.cs
- LinqTreeNodeEvaluator.cs
- HijriCalendar.cs
- FixedElement.cs
- ListViewTableRow.cs
- ThicknessAnimationBase.cs
- AdapterDictionary.cs
- EntityCommandCompilationException.cs
- Context.cs
- SmiEventStream.cs
- ClientApiGenerator.cs
- StrongNameMembershipCondition.cs
- Util.cs
- ObjectDataSourceFilteringEventArgs.cs
- CompilationLock.cs
- PreservationFileWriter.cs
- MouseDevice.cs
- JsonWriterDelegator.cs
- ObjectDisposedException.cs
- DocumentPaginator.cs
- NonVisualControlAttribute.cs
- SafeMILHandle.cs
- TrackingMemoryStream.cs
- OdbcInfoMessageEvent.cs
- ListViewTableCell.cs
- MoveSizeWinEventHandler.cs
- XmlDictionaryReaderQuotas.cs
- BitmapEffectCollection.cs
- HashCodeCombiner.cs
- ListControl.cs
- ObjectDataSourceSelectingEventArgs.cs
- TextCollapsingProperties.cs
- CollectionViewSource.cs
- CodeTryCatchFinallyStatement.cs
- FixedStringLookup.cs
- FlowchartDesigner.xaml.cs
- ReferencedType.cs
- SinglePageViewer.cs
- ClientScriptManager.cs
- XamlUtilities.cs
- BinaryFormatterWriter.cs
- RichTextBox.cs
- FormClosingEvent.cs
- ListViewContainer.cs
- AxisAngleRotation3D.cs
- __ComObject.cs
- DesignerCategoryAttribute.cs
- BooleanFacetDescriptionElement.cs
- SafeRegistryHandle.cs
- UnionCqlBlock.cs
- SudsParser.cs
- ProvidersHelper.cs
- XmlEntityReference.cs
- RequestResizeEvent.cs
- VirtualPath.cs
- COM2IManagedPerPropertyBrowsingHandler.cs
- RegexReplacement.cs
- BinHexDecoder.cs
- XsdValidatingReader.cs
- ErrorTableItemStyle.cs
- StateItem.cs
- TypeBuilderInstantiation.cs