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
- PageClientProxyGenerator.cs
- DataObjectFieldAttribute.cs
- SatelliteContractVersionAttribute.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- CodeTypeMemberCollection.cs
- DataBindingCollection.cs
- PanelStyle.cs
- HandoffBehavior.cs
- DelegateBodyWriter.cs
- GZipStream.cs
- Convert.cs
- AddInAdapter.cs
- contentDescriptor.cs
- DbDataReader.cs
- ThousandthOfEmRealPoints.cs
- WebPartTransformerCollection.cs
- GroupedContextMenuStrip.cs
- QuadTree.cs
- X509Certificate2.cs
- TraceContextEventArgs.cs
- SecureUICommand.cs
- FunctionImportMapping.ReturnTypeRenameMapping.cs
- XmlTextAttribute.cs
- DeviceContexts.cs
- ShowExpandedMultiValueConverter.cs
- TextFragmentEngine.cs
- RoutedUICommand.cs
- UpdateExpressionVisitor.cs
- LinkConverter.cs
- CustomCategoryAttribute.cs
- ApplicationManager.cs
- X509SecurityTokenAuthenticator.cs
- dsa.cs
- TimersDescriptionAttribute.cs
- AssemblyResourceLoader.cs
- Model3DGroup.cs
- DataGridViewTextBoxEditingControl.cs
- TableLayoutRowStyleCollection.cs
- DeviceContext2.cs
- MsmqBindingElementBase.cs
- ValidationPropertyAttribute.cs
- PreviewPrintController.cs
- ConnectionStringSettings.cs
- InputLangChangeRequestEvent.cs
- TemplatePartAttribute.cs
- _CacheStreams.cs
- TrackingServices.cs
- SafeNativeMethodsMilCoreApi.cs
- Wizard.cs
- XPathDescendantIterator.cs
- ping.cs
- JournalEntryListConverter.cs
- XmlTextWriter.cs
- diagnosticsswitches.cs
- _OverlappedAsyncResult.cs
- ArithmeticLiteral.cs
- CommandPlan.cs
- Positioning.cs
- StringUtil.cs
- TypeLoadException.cs
- DrawToolTipEventArgs.cs
- CornerRadiusConverter.cs
- CorrelationService.cs
- TreeNodeStyleCollection.cs
- Delegate.cs
- RowsCopiedEventArgs.cs
- InfoCardClaim.cs
- WindowsIdentity.cs
- EventLogEntryCollection.cs
- ToolBar.cs
- BookmarkUndoUnit.cs
- UrlAuthFailedErrorFormatter.cs
- WindowsComboBox.cs
- EpmAttributeNameBuilder.cs
- SystemInfo.cs
- UnsafeNativeMethods.cs
- WebControlParameterProxy.cs
- Properties.cs
- WebPartCollection.cs
- SwitchElementsCollection.cs
- XmlSchemaImporter.cs
- ObjectRef.cs
- PerformanceCounterCategory.cs
- SessionStateModule.cs
- ParameterToken.cs
- RichTextBox.cs
- DataControlFieldTypeEditor.cs
- TableSectionStyle.cs
- SamlAuthorizationDecisionClaimResource.cs
- BufferedWebEventProvider.cs
- SignatureTargetIdManager.cs
- DesignerDataView.cs
- IPGlobalProperties.cs
- TransformCollection.cs
- DecimalStorage.cs
- LowerCaseStringConverter.cs
- CharacterShapingProperties.cs
- WeakHashtable.cs
- ColumnResizeAdorner.cs
- ChineseLunisolarCalendar.cs