Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Data / System / Data / OleDb / OleDbErrorCollection.cs / 1 / OleDbErrorCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data.OleDb { using System; using System.ComponentModel; using System.Collections; using System.Data.Common; [Serializable, ListBindable(false)] #if WINFSInternalOnly internal #else public #endif sealed class OleDbErrorCollection : System.Collections.ICollection { readonly private ArrayList items; // WebData 106655 internal OleDbErrorCollection(UnsafeNativeMethods.IErrorInfo errorInfo) { ArrayList items = new ArrayList(); Bid.Trace("IErrorRecords\n"); UnsafeNativeMethods.IErrorRecords errorRecords = (errorInfo as UnsafeNativeMethods.IErrorRecords); if (null != errorRecords) { int recordCount = errorRecords.GetRecordCount(); Bid.Trace(" RecordCount=%d\n", recordCount); for (int i = 0; i < recordCount; ++i) { OleDbError error = new OleDbError(errorRecords, i); items.Add(error); } } this.items = items; } bool System.Collections.ICollection.IsSynchronized { get { return false;} } object System.Collections.ICollection.SyncRoot { get { return this;} } public int Count { get { ArrayList items = this.items; return ((null != items) ? items.Count : 0); } } public OleDbError this[int index] { get { return (this.items[index] as OleDbError); } } internal void AddRange(ICollection c) { items.AddRange(c); } public void CopyTo(Array array, int index) { this.items.CopyTo(array, index); } public void CopyTo (OleDbError[] array, int index) { this.items.CopyTo(array, index); } public IEnumerator GetEnumerator() { return this.items.GetEnumerator(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data.OleDb { using System; using System.ComponentModel; using System.Collections; using System.Data.Common; [Serializable, ListBindable(false)] #if WINFSInternalOnly internal #else public #endif sealed class OleDbErrorCollection : System.Collections.ICollection { readonly private ArrayList items; // WebData 106655 internal OleDbErrorCollection(UnsafeNativeMethods.IErrorInfo errorInfo) { ArrayList items = new ArrayList(); Bid.Trace("IErrorRecords\n"); UnsafeNativeMethods.IErrorRecords errorRecords = (errorInfo as UnsafeNativeMethods.IErrorRecords); if (null != errorRecords) { int recordCount = errorRecords.GetRecordCount(); Bid.Trace(" RecordCount=%d\n", recordCount); for (int i = 0; i < recordCount; ++i) { OleDbError error = new OleDbError(errorRecords, i); items.Add(error); } } this.items = items; } bool System.Collections.ICollection.IsSynchronized { get { return false;} } object System.Collections.ICollection.SyncRoot { get { return this;} } public int Count { get { ArrayList items = this.items; return ((null != items) ? items.Count : 0); } } public OleDbError this[int index] { get { return (this.items[index] as OleDbError); } } internal void AddRange(ICollection c) { items.AddRange(c); } public void CopyTo(Array array, int index) { this.items.CopyTo(array, index); } public void CopyTo (OleDbError[] array, int index) { this.items.CopyTo(array, index); } public IEnumerator GetEnumerator() { return this.items.GetEnumerator(); } } } // 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
- ReceiveActivityDesigner.cs
- _LoggingObject.cs
- AssemblyBuilder.cs
- HostedHttpContext.cs
- EmptyQuery.cs
- LinqDataSourceStatusEventArgs.cs
- ScopeCollection.cs
- StickyNote.cs
- BitmapMetadata.cs
- BufferBuilder.cs
- Int32AnimationUsingKeyFrames.cs
- BoundConstants.cs
- PointAnimation.cs
- RegexMatch.cs
- FormsAuthenticationModule.cs
- Translator.cs
- Line.cs
- tooltip.cs
- BamlTreeUpdater.cs
- BatchStream.cs
- ParameterBuilder.cs
- ValidatorUtils.cs
- MediaCommands.cs
- ControlTemplate.cs
- QueryCacheEntry.cs
- WebPartDescriptionCollection.cs
- ErrorsHelper.cs
- SapiRecoContext.cs
- DbLambda.cs
- MetafileHeaderEmf.cs
- FunctionNode.cs
- FileUtil.cs
- LineSegment.cs
- DPAPIProtectedConfigurationProvider.cs
- GridViewDeleteEventArgs.cs
- SqlRemoveConstantOrderBy.cs
- TextStore.cs
- CodeGenerator.cs
- EntitySetBase.cs
- DecoderReplacementFallback.cs
- InputLanguageManager.cs
- NameTable.cs
- Stopwatch.cs
- XamlInt32CollectionSerializer.cs
- X500Name.cs
- AspNetSynchronizationContext.cs
- MappingSource.cs
- ResourceCategoryAttribute.cs
- DesignTimeValidationFeature.cs
- UrlRoutingModule.cs
- NeutralResourcesLanguageAttribute.cs
- Stroke2.cs
- UserControl.cs
- SizeFConverter.cs
- GridViewEditEventArgs.cs
- EdgeModeValidation.cs
- EncryptedData.cs
- HealthMonitoringSection.cs
- BooleanFunctions.cs
- QilReplaceVisitor.cs
- WebEventCodes.cs
- HandleCollector.cs
- RbTree.cs
- SqlServer2KCompatibilityCheck.cs
- recordstate.cs
- ResourceExpressionEditorSheet.cs
- InputReport.cs
- ThreadExceptionEvent.cs
- FastEncoderWindow.cs
- SqlClientPermission.cs
- StringSource.cs
- RowCache.cs
- ModifiableIteratorCollection.cs
- SendingRequestEventArgs.cs
- Bind.cs
- DbMetaDataColumnNames.cs
- DbConnectionPoolOptions.cs
- Property.cs
- SerializeAbsoluteContext.cs
- DynamicFilter.cs
- DefaultProxySection.cs
- AgileSafeNativeMemoryHandle.cs
- ProjectedWrapper.cs
- __TransparentProxy.cs
- DialogResultConverter.cs
- DomainUpDown.cs
- AsyncPostBackTrigger.cs
- Matrix3DConverter.cs
- XmlComment.cs
- XpsResource.cs
- SoapTypeAttribute.cs
- SynchronizedDispatch.cs
- PropertyToken.cs
- _NegoState.cs
- HandleValueEditor.cs
- SHA1.cs
- RC2.cs
- ContentOnlyMessage.cs
- ArglessEventHandlerProxy.cs
- DescendantQuery.cs