Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- FileIOPermission.cs
- CriticalHandle.cs
- IdnMapping.cs
- XPathChildIterator.cs
- ContractMethodInfo.cs
- AbstractSvcMapFileLoader.cs
- Fonts.cs
- StatusBarPanel.cs
- Inline.cs
- ObjectDataSourceView.cs
- ValidationResult.cs
- SHA1Cng.cs
- BooleanToVisibilityConverter.cs
- CultureTableRecord.cs
- NullRuntimeConfig.cs
- TagMapInfo.cs
- IIS7WorkerRequest.cs
- FilteredAttributeCollection.cs
- DocumentOrderComparer.cs
- DesignBindingConverter.cs
- PropertyItem.cs
- ComponentResourceManager.cs
- ChangeProcessor.cs
- ReturnEventArgs.cs
- StateBag.cs
- RequestChannelBinder.cs
- ObjectListCommandCollection.cs
- PackUriHelper.cs
- BulletChrome.cs
- CopyNamespacesAction.cs
- Vector3DCollectionConverter.cs
- XamlTypeMapper.cs
- GraphicsContext.cs
- EventRoute.cs
- SqlConnectionStringBuilder.cs
- CommandConverter.cs
- BatchServiceHost.cs
- WsdlServiceChannelBuilder.cs
- ParallelLoopState.cs
- PropertyReferenceExtension.cs
- QueueProcessor.cs
- UmAlQuraCalendar.cs
- CodePageEncoding.cs
- HandlerBase.cs
- DesignerDataColumn.cs
- RegularExpressionValidator.cs
- Style.cs
- ThicknessKeyFrameCollection.cs
- ScrollViewer.cs
- SQLInt32Storage.cs
- ZipArchive.cs
- EntityWithKeyStrategy.cs
- QueryStringHandler.cs
- DynamicField.cs
- EntityClientCacheKey.cs
- MatrixTransform3D.cs
- SerializableAttribute.cs
- ToolStripOverflowButton.cs
- CompilerGlobalScopeAttribute.cs
- ProjectionCamera.cs
- MemberRestriction.cs
- CompilerScopeManager.cs
- Stylus.cs
- ExpressionConverter.cs
- StatusBarDrawItemEvent.cs
- TextCompositionManager.cs
- WsdlInspector.cs
- StringPropertyBuilder.cs
- SocketManager.cs
- XmlSchemaSimpleContentRestriction.cs
- DataSetMappper.cs
- diagnosticsswitches.cs
- XamlReader.cs
- CustomLineCap.cs
- QuadTree.cs
- TextStore.cs
- DataGridViewRow.cs
- XmlNamespaceMapping.cs
- WebConfigurationHostFileChange.cs
- SqlDataSource.cs
- Queue.cs
- PropertyPathWorker.cs
- VisualStyleElement.cs
- TypedTableHandler.cs
- DbDataRecord.cs
- WindowsNonControl.cs
- MemberAccessException.cs
- JournalEntryListConverter.cs
- CounterSample.cs
- SqlDataSourceSummaryPanel.cs
- ResolveNameEventArgs.cs
- MessageDecoder.cs
- DbReferenceCollection.cs
- QueryAsyncResult.cs
- UnmanagedMemoryStream.cs
- URLString.cs
- Atom10FormatterFactory.cs
- InheritanceRules.cs
- CommandEventArgs.cs
- XPathCompileException.cs