Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Data / System / Data / FillErrorEventArgs.cs / 1 / FillErrorEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data { // MDAC 59437 using System; using System.Data; #if WINFSInternalOnly internal #else public #endif 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. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ServiceParser.cs
- EntityTypeEmitter.cs
- DoubleAverageAggregationOperator.cs
- DoubleCollection.cs
- basecomparevalidator.cs
- QueryContinueDragEventArgs.cs
- PingReply.cs
- UnsettableComboBox.cs
- QilCloneVisitor.cs
- ReferentialConstraint.cs
- TextServicesDisplayAttribute.cs
- WindowsMenu.cs
- XmlLinkedNode.cs
- ReflectionUtil.cs
- UriScheme.cs
- AsyncStreamReader.cs
- DBCommand.cs
- TimelineGroup.cs
- TextStore.cs
- SqlConnectionStringBuilder.cs
- Html32TextWriter.cs
- FolderNameEditor.cs
- IssuanceLicense.cs
- BufferModesCollection.cs
- XsdSchemaFileEditor.cs
- FileSecurity.cs
- LogEntry.cs
- shaperfactoryquerycacheentry.cs
- ObjectDataSourceDisposingEventArgs.cs
- namescope.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- NameValuePermission.cs
- LineInfo.cs
- WebPermission.cs
- BinaryReader.cs
- SystemException.cs
- QueueAccessMode.cs
- DataServiceQueryProvider.cs
- LayoutTableCell.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- QilFunction.cs
- ObjectHandle.cs
- AccessibleObject.cs
- Invariant.cs
- Message.cs
- MetaChildrenColumn.cs
- MetafileHeader.cs
- Zone.cs
- UnsafeNativeMethods.cs
- SettingsPropertyNotFoundException.cs
- ConfigErrorGlyph.cs
- BooleanProjectedSlot.cs
- PointAnimationUsingKeyFrames.cs
- AsynchronousChannel.cs
- PropertyItemInternal.cs
- DtdParser.cs
- PageAsyncTaskManager.cs
- SqlDelegatedTransaction.cs
- IdnMapping.cs
- WebPartConnectionsCloseVerb.cs
- CellNormalizer.cs
- OdbcReferenceCollection.cs
- ZipIOExtraFieldZip64Element.cs
- wgx_commands.cs
- AffineTransform3D.cs
- _CookieModule.cs
- HtmlElementErrorEventArgs.cs
- ImageMap.cs
- IncrementalCompileAnalyzer.cs
- DataTemplateKey.cs
- xmlfixedPageInfo.cs
- AppSettingsExpressionBuilder.cs
- SymmetricAlgorithm.cs
- WizardStepBase.cs
- ChangeNode.cs
- DefaultValueAttribute.cs
- ExpressionBinding.cs
- ServiceXNameTypeConverter.cs
- SafeFileHandle.cs
- FontFamilyIdentifier.cs
- LocatorGroup.cs
- DataGridViewTopRowAccessibleObject.cs
- AnimationClock.cs
- MouseButtonEventArgs.cs
- ReferentialConstraint.cs
- updatecommandorderer.cs
- RequestCache.cs
- GroupItemAutomationPeer.cs
- SizeConverter.cs
- ToolStripDropTargetManager.cs
- DictationGrammar.cs
- SupportingTokenSpecification.cs
- DataGridViewCellPaintingEventArgs.cs
- SQLInt32.cs
- HttpCapabilitiesEvaluator.cs
- WinOEToolBoxItem.cs
- EventRecordWrittenEventArgs.cs
- LinkButton.cs
- ComMethodElementCollection.cs
- HtmlHead.cs