Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Data / System / Data / FillErrorEventArgs.cs / 1305376 / FillErrorEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data { // MDAC 59437 using System; using System.Data; public class FillErrorEventArgs : System.EventArgs { private bool continueFlag; private DataTable dataTable; private Exception errors; private object[] values; public FillErrorEventArgs(DataTable dataTable, object[] values) { this.dataTable = dataTable; this.values = values; if (null == this.values) { this.values = new object[0]; } } public bool Continue { get { return this.continueFlag; } set { this.continueFlag = value; } } public DataTable DataTable { get { return this.dataTable; } } public Exception Errors { get { return this.errors; } set { this.errors = value; } } public object[] Values { get { object[] copy = new object[values.Length]; for(int i = 0; i < values.Length; ++i) { copy[i] = values[i]; // WebData 107464 } return copy; } } } } // 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
- SingleResultAttribute.cs
- PathFigureCollection.cs
- CodeMethodInvokeExpression.cs
- TransformerTypeCollection.cs
- FontFamilyIdentifier.cs
- OutOfMemoryException.cs
- JsonSerializer.cs
- SharedPerformanceCounter.cs
- IApplicationTrustManager.cs
- JavaScriptSerializer.cs
- TypeDescriptionProvider.cs
- BasicCellRelation.cs
- StorageEntityTypeMapping.cs
- OledbConnectionStringbuilder.cs
- PackWebResponse.cs
- counter.cs
- DateTimeSerializationSection.cs
- FontFamily.cs
- DbInsertCommandTree.cs
- RegisteredHiddenField.cs
- XmlSchemaAttribute.cs
- DetailsViewDeletedEventArgs.cs
- JsonReaderWriterFactory.cs
- PhysicalOps.cs
- DataGridPagerStyle.cs
- ExceptionDetail.cs
- ClientSponsor.cs
- KeySpline.cs
- RepeaterCommandEventArgs.cs
- Activation.cs
- X509CertificateEndpointIdentity.cs
- TileBrush.cs
- HttpListener.cs
- CalendarDateRangeChangingEventArgs.cs
- KoreanLunisolarCalendar.cs
- XmlSchemaValidator.cs
- ControlPropertyNameConverter.cs
- TransformValueSerializer.cs
- AtomPub10CategoriesDocumentFormatter.cs
- WriteableBitmap.cs
- WithParamAction.cs
- TogglePatternIdentifiers.cs
- HtmlPhoneCallAdapter.cs
- ObjectListCommandsPage.cs
- Currency.cs
- PlainXmlDeserializer.cs
- XmlChoiceIdentifierAttribute.cs
- __ComObject.cs
- PersonalizationState.cs
- ResourceAttributes.cs
- QuaternionKeyFrameCollection.cs
- XsltArgumentList.cs
- Inline.cs
- ContainsRowNumberChecker.cs
- _LocalDataStore.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- GeometryDrawing.cs
- IDReferencePropertyAttribute.cs
- XmlUtil.cs
- ObjectConverter.cs
- Opcode.cs
- StringConcat.cs
- CharUnicodeInfo.cs
- XmlSchemaSimpleContentExtension.cs
- UriSectionData.cs
- ActiveDesignSurfaceEvent.cs
- XmlElement.cs
- TextAction.cs
- ManifestResourceInfo.cs
- ViewBox.cs
- Main.cs
- DataDocumentXPathNavigator.cs
- CapacityStreamGeometryContext.cs
- UnhandledExceptionEventArgs.cs
- LocalValueEnumerator.cs
- KeyedCollection.cs
- WebServiceReceive.cs
- sqlnorm.cs
- ClientTargetSection.cs
- WebWorkflowRole.cs
- MailAddressParser.cs
- CssClassPropertyAttribute.cs
- GeometryCollection.cs
- ObjectManager.cs
- BeginStoryboard.cs
- ClosableStream.cs
- ComponentEditorForm.cs
- HttpDebugHandler.cs
- XmlDocumentFragment.cs
- UIPropertyMetadata.cs
- AddingNewEventArgs.cs
- DataGridViewCellStateChangedEventArgs.cs
- RawUIStateInputReport.cs
- TypeContext.cs
- OleDbPropertySetGuid.cs
- RecognitionEventArgs.cs
- ModuleElement.cs
- TextSelectionHighlightLayer.cs
- Part.cs
- CellLabel.cs