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
- odbcmetadatacolumnnames.cs
- PropertyDescriptorComparer.cs
- ObjectKeyFrameCollection.cs
- WebServiceHandler.cs
- WebConfigurationHost.cs
- XmlCharCheckingReader.cs
- ClientScriptManagerWrapper.cs
- XmlSerializableWriter.cs
- SafeRightsManagementSessionHandle.cs
- DataSysAttribute.cs
- CodeCatchClauseCollection.cs
- RectKeyFrameCollection.cs
- XmlIlGenerator.cs
- SqlResolver.cs
- DescendantOverDescendantQuery.cs
- StateChangeEvent.cs
- OleDbError.cs
- FormViewPageEventArgs.cs
- DecimalKeyFrameCollection.cs
- XmlSecureResolver.cs
- DesignSurfaceManager.cs
- _TimerThread.cs
- SystemFonts.cs
- _ConnectStream.cs
- FormsAuthenticationCredentials.cs
- TextEditorCopyPaste.cs
- NameValueConfigurationCollection.cs
- ClientRoleProvider.cs
- ResourceExpressionEditorSheet.cs
- TypeBrowserDialog.cs
- MailWriter.cs
- Renderer.cs
- CollectionViewSource.cs
- DragEventArgs.cs
- PropertyInfoSet.cs
- DataDesignUtil.cs
- SqlMethods.cs
- SByteStorage.cs
- AddInToken.cs
- DecimalKeyFrameCollection.cs
- RestHandlerFactory.cs
- SiteMapNode.cs
- IPEndPoint.cs
- CertificateReferenceElement.cs
- FileLogRecordHeader.cs
- ModelService.cs
- CodeNamespace.cs
- NameValuePair.cs
- ToggleButton.cs
- ControlEvent.cs
- QueryComponents.cs
- DataGridViewColumnEventArgs.cs
- KeyEvent.cs
- SmiContext.cs
- XhtmlConformanceSection.cs
- ToolStripMenuItemCodeDomSerializer.cs
- CDSsyncETWBCLProvider.cs
- RtType.cs
- XmlSchemaSimpleTypeUnion.cs
- ClientScriptManagerWrapper.cs
- TextElementCollection.cs
- CategoriesDocumentFormatter.cs
- OleStrCAMarshaler.cs
- LabelDesigner.cs
- DetailsViewRowCollection.cs
- IndependentAnimationStorage.cs
- XPathNavigator.cs
- OdbcEnvironmentHandle.cs
- DecoderFallbackWithFailureFlag.cs
- TextFindEngine.cs
- XmlEntity.cs
- XmlQualifiedNameTest.cs
- XamlInt32CollectionSerializer.cs
- SRGSCompiler.cs
- BamlResourceSerializer.cs
- DispatcherExceptionEventArgs.cs
- GridViewRowPresenterBase.cs
- RangeValuePattern.cs
- WindowsFont.cs
- OleDbTransaction.cs
- FontStyle.cs
- WebPartVerbsEventArgs.cs
- CompilerCollection.cs
- ConnectionPoolManager.cs
- DocumentXmlWriter.cs
- RegisteredExpandoAttribute.cs
- SamlAuthorizationDecisionClaimResource.cs
- ResXFileRef.cs
- TrustManager.cs
- MessageQueueAccessControlEntry.cs
- ContentFileHelper.cs
- StateDesignerConnector.cs
- SqlCommandSet.cs
- IconBitmapDecoder.cs
- OperatingSystemVersionCheck.cs
- AuthenticatingEventArgs.cs
- FaultDescriptionCollection.cs
- RpcResponse.cs
- MapPathBasedVirtualPathProvider.cs
- TaskFormBase.cs