Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Data / System / Data / DataError.cs / 1 / DataError.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data { using System; using System.Diagnostics; ////// internal sealed class DataError { private string rowError = String.Empty; // column-level errors private int count; private ColumnError[] errorList; internal const int initialCapacity = 1; internal DataError() { } internal DataError(string rowError) { SetText(rowError); } internal string Text { get { return rowError; } set { SetText(value); } } internal bool HasErrors { get { return(rowError.Length != 0 || count != 0); } } // // this method resets the error to the new value. // internal void SetColumnError(DataColumn column, string error) { Debug.Assert(column != null, "Invalid (null) argument"); Debug.Assert(column.Table != null, "Invalid (loose) column"); if (error == null || error.Length == 0) { // remove error from the collection Clear(column); } else { if (errorList == null) { errorList = new ColumnError[initialCapacity]; } int i = IndexOf(column); errorList[i].column = column; errorList[i].error = error; column.errors++; if (i == count) count++; } } internal string GetColumnError(DataColumn column) { for (int i = 0; i < count; i++) { if (errorList[i].column == column) { return errorList[i].error; } } return String.Empty; } internal void Clear(DataColumn column) { if (count == 0) return; for (int i = 0; i < count; i++) { if (errorList[i].column == column) { System.Array.Copy(errorList, i+1, errorList, i, count-i-1); count--; column.errors--; Debug.Assert(column.errors >= 0, "missing error counts"); } } } internal void Clear() { for (int i = 0; i < count; i++) { errorList[i].column.errors--; Debug.Assert(errorList[i].column.errors >= 0, "missing error counts"); } count = 0; rowError = String.Empty; } internal DataColumn[] GetColumnsInError() { DataColumn[] cols = new DataColumn[count]; for (int i = 0; i < count; i++) { cols[i] = errorList[i].column; } return cols; } ///Represents an custom error that can be associated with a ///. /// private void SetText(string errorText) { if (null == errorText) { errorText = String.Empty; } rowError = errorText; } internal int IndexOf (DataColumn column) { // try to find the column for (int i = 0; i < count; i++) { if (errorList[i].column == column) { return i; } } if (count >= errorList.Length) { int newCapacity = Math.Min(count*2, column.Table.Columns.Count); ColumnError[] biggerList = new ColumnError[newCapacity]; System.Array.Copy(errorList, 0, biggerList, 0, count); errorList = biggerList; } return count; } internal struct ColumnError { internal DataColumn column; internal string error; }; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //Sets the error message for the ///. // Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data { using System; using System.Diagnostics; ////// internal sealed class DataError { private string rowError = String.Empty; // column-level errors private int count; private ColumnError[] errorList; internal const int initialCapacity = 1; internal DataError() { } internal DataError(string rowError) { SetText(rowError); } internal string Text { get { return rowError; } set { SetText(value); } } internal bool HasErrors { get { return(rowError.Length != 0 || count != 0); } } // // this method resets the error to the new value. // internal void SetColumnError(DataColumn column, string error) { Debug.Assert(column != null, "Invalid (null) argument"); Debug.Assert(column.Table != null, "Invalid (loose) column"); if (error == null || error.Length == 0) { // remove error from the collection Clear(column); } else { if (errorList == null) { errorList = new ColumnError[initialCapacity]; } int i = IndexOf(column); errorList[i].column = column; errorList[i].error = error; column.errors++; if (i == count) count++; } } internal string GetColumnError(DataColumn column) { for (int i = 0; i < count; i++) { if (errorList[i].column == column) { return errorList[i].error; } } return String.Empty; } internal void Clear(DataColumn column) { if (count == 0) return; for (int i = 0; i < count; i++) { if (errorList[i].column == column) { System.Array.Copy(errorList, i+1, errorList, i, count-i-1); count--; column.errors--; Debug.Assert(column.errors >= 0, "missing error counts"); } } } internal void Clear() { for (int i = 0; i < count; i++) { errorList[i].column.errors--; Debug.Assert(errorList[i].column.errors >= 0, "missing error counts"); } count = 0; rowError = String.Empty; } internal DataColumn[] GetColumnsInError() { DataColumn[] cols = new DataColumn[count]; for (int i = 0; i < count; i++) { cols[i] = errorList[i].column; } return cols; } ///Represents an custom error that can be associated with a ///. /// private void SetText(string errorText) { if (null == errorText) { errorText = String.Empty; } rowError = errorText; } internal int IndexOf (DataColumn column) { // try to find the column for (int i = 0; i < count; i++) { if (errorList[i].column == column) { return i; } } if (count >= errorList.Length) { int newCapacity = Math.Min(count*2, column.Table.Columns.Count); ColumnError[] biggerList = new ColumnError[newCapacity]; System.Array.Copy(errorList, 0, biggerList, 0, count); errorList = biggerList; } return count; } internal struct ColumnError { internal DataColumn column; internal string error; }; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Sets the error message for the ///.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BulletedListEventArgs.cs
- DataTablePropertyDescriptor.cs
- ExpressionLexer.cs
- WebPartCancelEventArgs.cs
- PKCS1MaskGenerationMethod.cs
- WeakReferenceKey.cs
- PrincipalPermission.cs
- TextBoxAutomationPeer.cs
- GestureRecognitionResult.cs
- TreePrinter.cs
- XmlDesigner.cs
- IncrementalReadDecoders.cs
- KeyTimeConverter.cs
- PathStreamGeometryContext.cs
- BindingList.cs
- WebPartsSection.cs
- DataGridItemEventArgs.cs
- IisTraceWebEventProvider.cs
- Vector.cs
- ProviderUtil.cs
- PolygonHotSpot.cs
- Metafile.cs
- FaultFormatter.cs
- InlineCollection.cs
- ContainerActivationHelper.cs
- ImageList.cs
- DurationConverter.cs
- SizeFConverter.cs
- VBIdentifierNameEditor.cs
- ThrowHelper.cs
- EntityTypeEmitter.cs
- SoapSchemaExporter.cs
- HostingPreferredMapPath.cs
- AnnotationAdorner.cs
- Guid.cs
- X509ChainPolicy.cs
- SR.cs
- SqlNodeAnnotation.cs
- SqlTopReducer.cs
- RequestCacheManager.cs
- HitTestParameters3D.cs
- XmlAttribute.cs
- UrlUtility.cs
- AudienceUriMode.cs
- WebPartExportVerb.cs
- OdbcConnectionPoolProviderInfo.cs
- DataGridItemEventArgs.cs
- FixedSOMImage.cs
- ContainerSelectorGlyph.cs
- ScriptModule.cs
- PixelFormats.cs
- PrivateFontCollection.cs
- SimpleTypesSurrogate.cs
- FocusManager.cs
- PartialCachingControl.cs
- SqlConnectionStringBuilder.cs
- BadImageFormatException.cs
- UserControlBuildProvider.cs
- GradientBrush.cs
- SerialPort.cs
- FontUnit.cs
- DataKeyCollection.cs
- RoleManagerEventArgs.cs
- errorpatternmatcher.cs
- MethodRental.cs
- ResourceAssociationType.cs
- UpdatableWrapper.cs
- ImageSourceValueSerializer.cs
- DesignerDataStoredProcedure.cs
- OdbcFactory.cs
- WebPartsPersonalizationAuthorization.cs
- ModuleBuilder.cs
- Base64Decoder.cs
- precedingsibling.cs
- AuthenticationManager.cs
- XamlTypeMapper.cs
- SecurityMode.cs
- PictureBox.cs
- InProcStateClientManager.cs
- ErrorInfoXmlDocument.cs
- EventWaitHandleSecurity.cs
- TextTreeTextNode.cs
- CacheChildrenQuery.cs
- FileSecurity.cs
- StreamInfo.cs
- RegularExpressionValidator.cs
- NCryptNative.cs
- PrivilegedConfigurationManager.cs
- StdValidatorsAndConverters.cs
- MatrixIndependentAnimationStorage.cs
- XappLauncher.cs
- JapaneseLunisolarCalendar.cs
- WebPartConnectionsCancelVerb.cs
- Relationship.cs
- ElapsedEventArgs.cs
- WindowsAltTab.cs
- FormView.cs
- ToolboxComponentsCreatedEventArgs.cs
- QilStrConcat.cs
- StaticContext.cs