Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Data / System / Data / SqlClient / SqlErrorCollection.cs / 1 / SqlErrorCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data.SqlClient { using System; using System.Collections; using System.ComponentModel; using System.Diagnostics; using System.Runtime.InteropServices; [Serializable, ListBindable(false)] #if WINFSInternalOnly internal #else public #endif sealed class SqlErrorCollection : ICollection { private ArrayList errors = new ArrayList(); internal SqlErrorCollection() { } public void CopyTo (Array array, int index) { this.errors.CopyTo(array, index); } public void CopyTo (SqlError[] array, int index) { this.errors.CopyTo(array, index); } public int Count { get { return this.errors.Count;} } object System.Collections.ICollection.SyncRoot { // MDAC 68481 get { return this;} } bool System.Collections.ICollection.IsSynchronized { // MDAC 68481 get { return false;} } public SqlError this[int index] { get { return (SqlError) this.errors[index]; } } public IEnumerator GetEnumerator() { return errors.GetEnumerator(); } internal void Add(SqlError error) { this.errors.Add(error); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PropagatorResult.cs
- ToolboxItemAttribute.cs
- PeerContact.cs
- ManagementNamedValueCollection.cs
- SimpleHandlerBuildProvider.cs
- SymLanguageType.cs
- TrailingSpaceComparer.cs
- Geometry.cs
- SectionUpdates.cs
- Operand.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- ConditionalWeakTable.cs
- DataGridLinkButton.cs
- AssemblyName.cs
- RenderDataDrawingContext.cs
- SimpleParser.cs
- StackSpiller.cs
- Point4D.cs
- PropertyChangedEventManager.cs
- ServerValidateEventArgs.cs
- PassportIdentity.cs
- MinMaxParagraphWidth.cs
- StackBuilderSink.cs
- _NestedMultipleAsyncResult.cs
- DataServiceEntityAttribute.cs
- IndicFontClient.cs
- GenericTextProperties.cs
- PasswordRecoveryDesigner.cs
- AxImporter.cs
- ReferencedAssembly.cs
- DiagnosticsConfigurationHandler.cs
- DataGridItemEventArgs.cs
- DLinqTableProvider.cs
- PingOptions.cs
- MetadataSource.cs
- Subset.cs
- SiteMapPath.cs
- MenuStrip.cs
- WindowsUpDown.cs
- ImageClickEventArgs.cs
- MultiDataTrigger.cs
- versioninfo.cs
- BinHexEncoding.cs
- SettingsProperty.cs
- XmlSerializer.cs
- FrameworkContentElement.cs
- StylusPointCollection.cs
- IsolatedStorageFile.cs
- ScriptingSectionGroup.cs
- UnmanagedBitmapWrapper.cs
- CompilerGlobalScopeAttribute.cs
- PersonalizationProviderHelper.cs
- CodeRegionDirective.cs
- _PooledStream.cs
- InternalUserCancelledException.cs
- ImageMap.cs
- TextTreeTextBlock.cs
- BamlBinaryReader.cs
- OperationExecutionFault.cs
- DataViewManager.cs
- DBPropSet.cs
- TdsEnums.cs
- EventBuilder.cs
- HttpClientCertificate.cs
- SByteStorage.cs
- IncrementalReadDecoders.cs
- LinkDescriptor.cs
- AssemblyInfo.cs
- CAGDesigner.cs
- TextElementCollection.cs
- InputElement.cs
- ImageBrush.cs
- SoapAttributeOverrides.cs
- Rotation3DAnimationBase.cs
- DefinitionUpdate.cs
- WindowsIdentity.cs
- PositiveTimeSpanValidatorAttribute.cs
- MemoryRecordBuffer.cs
- BuildResult.cs
- ModuleElement.cs
- SqlDataSourceView.cs
- DataFieldConverter.cs
- datacache.cs
- ToolboxComponentsCreatingEventArgs.cs
- PageBuildProvider.cs
- Application.cs
- validation.cs
- NetNamedPipeSecurityMode.cs
- CodeNamespaceImportCollection.cs
- PopupRoot.cs
- KeysConverter.cs
- StagingAreaInputItem.cs
- ReflectionServiceProvider.cs
- SpecialNameAttribute.cs
- BitmapInitialize.cs
- ListCommandEventArgs.cs
- MbpInfo.cs
- DirtyTextRange.cs
- Int16AnimationBase.cs
- _ProxyChain.cs