Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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. // //[....] //[....] //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FormattedTextSymbols.cs
- AssertHelper.cs
- HtmlListAdapter.cs
- LinearKeyFrames.cs
- DSACryptoServiceProvider.cs
- SafeLibraryHandle.cs
- SqlBuilder.cs
- CodeObjectCreateExpression.cs
- PageMediaSize.cs
- LowerCaseStringConverter.cs
- RNGCryptoServiceProvider.cs
- BindingExpression.cs
- TypefaceMetricsCache.cs
- coordinator.cs
- MenuCommandService.cs
- DataGridViewAdvancedBorderStyle.cs
- SingleTagSectionHandler.cs
- StringUtil.cs
- InvalidEnumArgumentException.cs
- StylusPoint.cs
- IssuedTokenClientBehaviorsElementCollection.cs
- SQLRoleProvider.cs
- TypedTableBaseExtensions.cs
- ExtensionSurface.cs
- UnsafePeerToPeerMethods.cs
- SqlFactory.cs
- TreeViewImageKeyConverter.cs
- ObjectDataSourceChooseTypePanel.cs
- HtmlAnchor.cs
- SlipBehavior.cs
- TableLayoutStyleCollection.cs
- ConfigurationErrorsException.cs
- EFAssociationProvider.cs
- TrackingProfileSerializer.cs
- HwndHostAutomationPeer.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- ThemeableAttribute.cs
- DerivedKeySecurityTokenStub.cs
- IfAction.cs
- IOException.cs
- SetStateDesigner.cs
- XPathParser.cs
- FileDialog_Vista.cs
- EncoderParameter.cs
- InvokeMethodActivity.cs
- ExpressionParser.cs
- XmlElementList.cs
- WinInet.cs
- BroadcastEventHelper.cs
- SoapSchemaMember.cs
- AppDomainProtocolHandler.cs
- Preprocessor.cs
- SchemaMerger.cs
- DbProviderConfigurationHandler.cs
- CodeGroup.cs
- XmlAttributeCollection.cs
- bidPrivateBase.cs
- PrintController.cs
- FormViewInsertEventArgs.cs
- StyleCollectionEditor.cs
- ExclusiveTcpListener.cs
- SynchronizedPool.cs
- ClosureBinding.cs
- XmlHierarchyData.cs
- precedingquery.cs
- ISAPIWorkerRequest.cs
- KeyBinding.cs
- Rotation3DAnimation.cs
- SQLInt64Storage.cs
- AutomationPattern.cs
- ProxyFragment.cs
- Lease.cs
- CompressionTransform.cs
- XmlTypeAttribute.cs
- UnsafeMethods.cs
- DesignerVerbCollection.cs
- QueueProcessor.cs
- _StreamFramer.cs
- BounceEase.cs
- XmlSchemaSimpleContent.cs
- AxisAngleRotation3D.cs
- Delay.cs
- MenuTracker.cs
- WmpBitmapDecoder.cs
- CheckPair.cs
- SimpleApplicationHost.cs
- WindowsListViewGroup.cs
- XPathNavigatorKeyComparer.cs
- SoapSchemaImporter.cs
- StringExpressionSet.cs
- SharedStatics.cs
- COM2EnumConverter.cs
- DocumentSequenceHighlightLayer.cs
- Object.cs
- Help.cs
- TransformFinalBlockRequest.cs
- SchemaNames.cs
- PlacementWorkspace.cs
- ForAllOperator.cs
- IndexingContentUnit.cs