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
- DetectEofStream.cs
- ComponentResourceKeyConverter.cs
- SystemIPGlobalStatistics.cs
- DataKey.cs
- URI.cs
- Win32SafeHandles.cs
- OneOfElement.cs
- ConversionContext.cs
- StateManagedCollection.cs
- Semaphore.cs
- LayoutEditorPart.cs
- Debug.cs
- AutoFocusStyle.xaml.cs
- DependencyObjectType.cs
- DetectRunnableInstancesTask.cs
- XsltLibrary.cs
- OracleLob.cs
- ModelPropertyCollectionImpl.cs
- ResourceExpressionBuilder.cs
- ScopelessEnumAttribute.cs
- ToolboxItemCollection.cs
- RepeaterItem.cs
- WebHeaderCollection.cs
- CompilerLocalReference.cs
- FrameworkElementAutomationPeer.cs
- MemoryRecordBuffer.cs
- SendReply.cs
- Bitmap.cs
- VectorCollection.cs
- Imaging.cs
- HttpException.cs
- Queue.cs
- StringFormat.cs
- SqlDataSourceSelectingEventArgs.cs
- CheckPair.cs
- TraceUtils.cs
- GenericIdentity.cs
- MarkupCompiler.cs
- PointValueSerializer.cs
- LinqDataSourceContextEventArgs.cs
- ContextToken.cs
- SafeNativeMethods.cs
- IncrementalCompileAnalyzer.cs
- Command.cs
- RadioButtonStandardAdapter.cs
- ContentElementAutomationPeer.cs
- _LazyAsyncResult.cs
- EntitySetDataBindingList.cs
- CreateUserWizard.cs
- Transform.cs
- DecoratedNameAttribute.cs
- ValidationEventArgs.cs
- DocumentViewerHelper.cs
- StringExpressionSet.cs
- MatrixConverter.cs
- DescendentsWalkerBase.cs
- RowUpdatingEventArgs.cs
- ProxyElement.cs
- UrlUtility.cs
- WebSysDisplayNameAttribute.cs
- SmtpMail.cs
- XmlSchemaCompilationSettings.cs
- BuildManager.cs
- PrintDialog.cs
- XmlSerializationWriter.cs
- TargetInvocationException.cs
- Int32AnimationBase.cs
- XamlHostingConfiguration.cs
- ObjectResult.cs
- ParentQuery.cs
- SecurityTokenAuthenticator.cs
- BindableTemplateBuilder.cs
- WebPartConnectionCollection.cs
- AsyncCompletedEventArgs.cs
- XmlWhitespace.cs
- ExpressionsCollectionEditor.cs
- StdValidatorsAndConverters.cs
- XmlMembersMapping.cs
- Container.cs
- BezierSegment.cs
- SubtreeProcessor.cs
- BeginStoryboard.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- WebPartHelpVerb.cs
- OrCondition.cs
- FixedSOMImage.cs
- SecurityManager.cs
- ReadOnlyMetadataCollection.cs
- PointCollection.cs
- ToolboxDataAttribute.cs
- ArrayExtension.cs
- FunctionQuery.cs
- PageContentAsyncResult.cs
- SecurityUniqueId.cs
- NonPrimarySelectionGlyph.cs
- ExecutionContext.cs
- WorkflowStateRollbackService.cs
- SchemaInfo.cs
- METAHEADER.cs
- FileDialog_Vista.cs