Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Data / System / Data / Common / dbdatarecord.cs / 5 / 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
- ObjectListDesigner.cs
- SystemResources.cs
- RemoteWebConfigurationHost.cs
- DebugHandleTracker.cs
- GeneralTransformGroup.cs
- IgnoreFlushAndCloseStream.cs
- RepeatInfo.cs
- CellParaClient.cs
- RectAnimation.cs
- DataControlCommands.cs
- MediaTimeline.cs
- WebBrowserEvent.cs
- TextEffectResolver.cs
- SendOperation.cs
- C14NUtil.cs
- XdrBuilder.cs
- VoiceSynthesis.cs
- StreamReader.cs
- GeneralTransformGroup.cs
- UIElementIsland.cs
- WorkerRequest.cs
- XsdCachingReader.cs
- GrabHandleGlyph.cs
- ComponentManagerBroker.cs
- ToolStripDropDownClosedEventArgs.cs
- OrderedDictionary.cs
- ObjectTag.cs
- Baml2006ReaderContext.cs
- HighlightOverlayGlyph.cs
- login.cs
- Freezable.cs
- BamlResourceSerializer.cs
- Scene3D.cs
- Vector3DAnimation.cs
- Model3DGroup.cs
- SQLRoleProvider.cs
- FormatterServices.cs
- StyleTypedPropertyAttribute.cs
- RadioButtonList.cs
- SmtpCommands.cs
- PersonalizableTypeEntry.cs
- TextDecorationUnitValidation.cs
- XmlWriterDelegator.cs
- StringExpressionSet.cs
- ScrollItemPattern.cs
- NumberSubstitution.cs
- ObjectListComponentEditor.cs
- ValidationErrorCollection.cs
- SqlGenerator.cs
- CounterSample.cs
- ByteStream.cs
- LinearQuaternionKeyFrame.cs
- MouseButton.cs
- IIS7UserPrincipal.cs
- SHA512.cs
- TemplateBindingExpression.cs
- IntAverageAggregationOperator.cs
- PageContentAsyncResult.cs
- MediaElement.cs
- EmbeddedMailObjectsCollection.cs
- RadioButtonAutomationPeer.cs
- LinqDataSourceDisposeEventArgs.cs
- AvTraceFormat.cs
- DispatchProxy.cs
- ZoneMembershipCondition.cs
- DataControlLinkButton.cs
- FilterQueryOptionExpression.cs
- ListenUriMode.cs
- Stylesheet.cs
- ValidatorUtils.cs
- SqlWorkflowInstanceStore.cs
- PowerModeChangedEventArgs.cs
- UnmanagedMemoryStream.cs
- ChangeProcessor.cs
- BigInt.cs
- WebSysDisplayNameAttribute.cs
- FusionWrap.cs
- TimelineClockCollection.cs
- CompositeCollection.cs
- OwnerDrawPropertyBag.cs
- PrimitiveCodeDomSerializer.cs
- FormatControl.cs
- WindowsComboBox.cs
- SeparatorAutomationPeer.cs
- BufferBuilder.cs
- InsufficientExecutionStackException.cs
- MsmqChannelListenerBase.cs
- Quaternion.cs
- TimeoutValidationAttribute.cs
- EntityCollectionChangedParams.cs
- XmlRawWriter.cs
- TextServicesManager.cs
- ClientTargetCollection.cs
- ClientTargetSection.cs
- InputLanguageEventArgs.cs
- GeometryCombineModeValidation.cs
- ZipIOCentralDirectoryFileHeader.cs
- ReceiveSecurityHeaderEntry.cs
- AsymmetricSignatureDeformatter.cs
- DataSourceHelper.cs