Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ //// 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
- DocumentationServerProtocol.cs
- TrackPoint.cs
- SQLBoolean.cs
- FactoryId.cs
- ViewStateException.cs
- DeploymentSectionCache.cs
- Rect.cs
- ExceptionHandler.cs
- TextOnlyOutput.cs
- File.cs
- NamedObject.cs
- DBDataPermission.cs
- LinkClickEvent.cs
- XmlEntity.cs
- ListView.cs
- DynamicValidator.cs
- StringValueConverter.cs
- _UncName.cs
- CodePageEncoding.cs
- WebPartCatalogCloseVerb.cs
- Expr.cs
- HasCopySemanticsAttribute.cs
- HostedElements.cs
- TextMetrics.cs
- SystemIPGlobalProperties.cs
- DesignerSerializationOptionsAttribute.cs
- FontFamily.cs
- ClusterRegistryConfigurationProvider.cs
- Subtree.cs
- DataGridViewRowCancelEventArgs.cs
- CodeDesigner.cs
- XamlFrame.cs
- XmlSchemas.cs
- Vector3DAnimation.cs
- BufferedStream.cs
- TextTreePropertyUndoUnit.cs
- StrongNameUtility.cs
- SelectorAutomationPeer.cs
- DataGridViewCellEventArgs.cs
- CustomErrorCollection.cs
- DataGridViewRowDividerDoubleClickEventArgs.cs
- ProvideValueServiceProvider.cs
- CreationContext.cs
- Point4DConverter.cs
- ConfigurationStrings.cs
- FormViewInsertEventArgs.cs
- IssuedTokenParametersElement.cs
- DictionaryTraceRecord.cs
- CssClassPropertyAttribute.cs
- DropDownList.cs
- SymDocumentType.cs
- NameValuePermission.cs
- InProcStateClientManager.cs
- XmlSchemaAttribute.cs
- FunctionOverloadResolver.cs
- Rect3D.cs
- HyperLinkStyle.cs
- IsolatedStorageFileStream.cs
- SessionState.cs
- StylusPointPropertyId.cs
- CLRBindingWorker.cs
- RegexNode.cs
- SecurityPermission.cs
- ProvideValueServiceProvider.cs
- XmlDictionaryReaderQuotas.cs
- QueryResults.cs
- ToolStripLabel.cs
- AppDomainEvidenceFactory.cs
- UniqueIdentifierService.cs
- SchemaElementLookUpTable.cs
- HtmlTextArea.cs
- RtfNavigator.cs
- DefaultAsyncDataDispatcher.cs
- WmpBitmapDecoder.cs
- LocalizabilityAttribute.cs
- input.cs
- ServiceOperation.cs
- CodeLinePragma.cs
- DataControlFieldHeaderCell.cs
- OpenFileDialog.cs
- ProtocolsConfigurationHandler.cs
- SoapSchemaImporter.cs
- DBNull.cs
- DrawingGroup.cs
- CopyOfAction.cs
- AttachmentCollection.cs
- WindowsListView.cs
- COMException.cs
- ReaderWriterLockSlim.cs
- Matrix3D.cs
- CmsInterop.cs
- Pkcs7Signer.cs
- WeakReference.cs
- MouseBinding.cs
- NavigationWindow.cs
- CompositeCollection.cs
- DataGridViewSortCompareEventArgs.cs
- XmlSchemaObjectTable.cs
- FocusChangedEventArgs.cs
- AsyncOperationManager.cs