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
- URLEditor.cs
- Connector.cs
- Visitor.cs
- PowerModeChangedEventArgs.cs
- ResourceIDHelper.cs
- DataServiceQueryOfT.cs
- CommandField.cs
- CodeTypeParameterCollection.cs
- SoapIgnoreAttribute.cs
- CodeVariableReferenceExpression.cs
- TextMetrics.cs
- ReflectPropertyDescriptor.cs
- Error.cs
- Light.cs
- SqlConnection.cs
- SystemColors.cs
- ListViewItem.cs
- ComponentTray.cs
- ResourceReader.cs
- EpmContentSerializer.cs
- DBAsyncResult.cs
- ResourceProviderFactory.cs
- HttpModuleCollection.cs
- DesignerVerb.cs
- OAVariantLib.cs
- MetaDataInfo.cs
- ProcessModelSection.cs
- BehaviorEditorPart.cs
- WebServiceData.cs
- ITextView.cs
- TableRowCollection.cs
- UnsignedPublishLicense.cs
- TypeCollectionDesigner.xaml.cs
- KeyedHashAlgorithm.cs
- LogRestartAreaEnumerator.cs
- CookieProtection.cs
- StylusPointCollection.cs
- SmtpSection.cs
- SqlDelegatedTransaction.cs
- AdornerPresentationContext.cs
- OracleParameterBinding.cs
- Condition.cs
- TagElement.cs
- ArglessEventHandlerProxy.cs
- Tuple.cs
- ApplicationInterop.cs
- FormViewInsertEventArgs.cs
- ProcessModule.cs
- EnglishPluralizationService.cs
- CodeCommentStatement.cs
- UdpDiscoveryEndpoint.cs
- TextServicesContext.cs
- columnmapfactory.cs
- PropertyGridDesigner.cs
- GenericWebPart.cs
- ObjectAnimationUsingKeyFrames.cs
- SiteMapNode.cs
- ApplicationServiceManager.cs
- ConsumerConnectionPointCollection.cs
- URLMembershipCondition.cs
- WebPartRestoreVerb.cs
- NotifyInputEventArgs.cs
- RealizedColumnsBlock.cs
- ListBoxChrome.cs
- ObjectTypeMapping.cs
- UIInitializationException.cs
- XPathParser.cs
- TypeInfo.cs
- ErrorStyle.cs
- RuntimeWrappedException.cs
- ManifestResourceInfo.cs
- QilParameter.cs
- WindowsToolbar.cs
- CapabilitiesPattern.cs
- DateTimeFormat.cs
- QueryBranchOp.cs
- IgnoreFileBuildProvider.cs
- ToolStripDropDownItemDesigner.cs
- InstanceDescriptor.cs
- ConfigsHelper.cs
- XPathException.cs
- LinqDataSourceInsertEventArgs.cs
- IUnknownConstantAttribute.cs
- XmlSchemaParticle.cs
- UnaryNode.cs
- WorkItem.cs
- EntityDataSourceContextCreatedEventArgs.cs
- EventLogPermissionEntryCollection.cs
- ToolStripProgressBar.cs
- MenuItemStyle.cs
- Pkcs9Attribute.cs
- SspiSecurityToken.cs
- Blend.cs
- HttpRequestCacheValidator.cs
- TdsParserStateObject.cs
- ManagedFilter.cs
- DocumentSequenceHighlightLayer.cs
- BigInt.cs
- DocumentOrderComparer.cs
- MultitargetingHelpers.cs