Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Data / System / Data / Common / dbdatarecord.cs / 1305376 / dbdatarecord.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data.Common { using System.ComponentModel; public 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; public 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
- SAPICategories.cs
- Win32KeyboardDevice.cs
- CoTaskMemSafeHandle.cs
- ClaimTypeElement.cs
- EntityReference.cs
- DataGridViewDesigner.cs
- OdbcEnvironment.cs
- XmlSchemaDocumentation.cs
- FormsAuthenticationUser.cs
- UmAlQuraCalendar.cs
- mediapermission.cs
- ColumnHeaderConverter.cs
- Number.cs
- LineProperties.cs
- LinkUtilities.cs
- TdsParserStaticMethods.cs
- FixedSOMPage.cs
- prefixendpointaddressmessagefilter.cs
- HttpConfigurationSystem.cs
- DeviceOverridableAttribute.cs
- DropShadowBitmapEffect.cs
- InteropAutomationProvider.cs
- DetailsViewCommandEventArgs.cs
- DXD.cs
- SqlTriggerContext.cs
- Constraint.cs
- LayoutEngine.cs
- CodeGotoStatement.cs
- ItemCollection.cs
- Geometry.cs
- CheckBoxStandardAdapter.cs
- WebPartAddingEventArgs.cs
- DataGrid.cs
- SQLBinaryStorage.cs
- InfoCardRSAPKCS1SignatureDeformatter.cs
- InstanceData.cs
- tooltip.cs
- ProjectedSlot.cs
- TypeExtensionConverter.cs
- HttpCookie.cs
- ArraySortHelper.cs
- CharacterMetricsDictionary.cs
- IDQuery.cs
- DefaultTextStore.cs
- XamlBrushSerializer.cs
- SoapAttributes.cs
- Cloud.cs
- ListControl.cs
- SiteMapDesignerDataSourceView.cs
- LinkArea.cs
- SqlRecordBuffer.cs
- WebPartAddingEventArgs.cs
- DoubleLink.cs
- XmlSchemaChoice.cs
- ConfigDefinitionUpdates.cs
- TreeViewImageKeyConverter.cs
- SqlMethodTransformer.cs
- LogSwitch.cs
- HandlerWithFactory.cs
- RMEnrollmentPage2.cs
- HttpCapabilitiesBase.cs
- RequestUriProcessor.cs
- PointValueSerializer.cs
- SelectionPattern.cs
- NativeMethods.cs
- XmlSchemaSimpleTypeList.cs
- DateTimeUtil.cs
- SequentialActivityDesigner.cs
- QueryExecutionOption.cs
- HttpHandlerActionCollection.cs
- TrustSection.cs
- Semaphore.cs
- OpCopier.cs
- RegexCompilationInfo.cs
- CmsInterop.cs
- CrossAppDomainChannel.cs
- SmiMetaData.cs
- BufferedStream.cs
- SqlProviderUtilities.cs
- FileDialog_Vista_Interop.cs
- Int32CollectionValueSerializer.cs
- OleAutBinder.cs
- InputGestureCollection.cs
- TogglePattern.cs
- Set.cs
- DataServiceResponse.cs
- WebPartVerb.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- ExtentKey.cs
- Version.cs
- TypedDatasetGenerator.cs
- BinHexDecoder.cs
- DBConcurrencyException.cs
- MailAddressCollection.cs
- SafeRightsManagementPubHandle.cs
- UIElement3D.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- ComEventsSink.cs
- TableDesigner.cs
- RemoteDebugger.cs