Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- HMACSHA1.cs
- RegexCompilationInfo.cs
- DefaultAssemblyResolver.cs
- DataIdProcessor.cs
- ZipIOExtraFieldZip64Element.cs
- TabControlCancelEvent.cs
- RegexRunner.cs
- RevocationPoint.cs
- TextViewDesigner.cs
- FormViewPageEventArgs.cs
- WsdlBuildProvider.cs
- SplitterCancelEvent.cs
- ProfileProvider.cs
- QueryPageSettingsEventArgs.cs
- AppLevelCompilationSectionCache.cs
- UnsafeMethods.cs
- StandardOleMarshalObject.cs
- QilList.cs
- Script.cs
- NavigationPropertyEmitter.cs
- AnnouncementEndpointElement.cs
- HtmlInputPassword.cs
- DesignerView.Commands.cs
- Separator.cs
- RepeaterCommandEventArgs.cs
- safesecurityhelperavalon.cs
- RenderData.cs
- EdmType.cs
- QilName.cs
- DbgCompiler.cs
- WinEventTracker.cs
- selecteditemcollection.cs
- TextStore.cs
- FrameworkElementAutomationPeer.cs
- ColumnClickEvent.cs
- DetailsViewDeleteEventArgs.cs
- XMLSchema.cs
- DecimalConstantAttribute.cs
- UnsafeNativeMethods.cs
- IsolationInterop.cs
- PowerStatus.cs
- TableDetailsCollection.cs
- WebResourceAttribute.cs
- ResourceIDHelper.cs
- X509SecurityToken.cs
- SqlDataSourceCommandEventArgs.cs
- RoleService.cs
- RawStylusActions.cs
- GridViewUpdatedEventArgs.cs
- XmlILStorageConverter.cs
- TextReader.cs
- Token.cs
- HierarchicalDataBoundControl.cs
- UInt64Converter.cs
- CodeTypeReferenceCollection.cs
- QueryOutputWriter.cs
- ServiceObjectContainer.cs
- ReliableSessionElement.cs
- TextRangeBase.cs
- HeaderElement.cs
- ConfigXmlReader.cs
- TypeConverterBase.cs
- SpotLight.cs
- HtmlButton.cs
- StrongNameKeyPair.cs
- SqlGenerator.cs
- ExtentKey.cs
- ImageCodecInfo.cs
- XMLSchema.cs
- Bold.cs
- CompressionTransform.cs
- XmlNamedNodeMap.cs
- MessageDescriptionCollection.cs
- DBParameter.cs
- AxImporter.cs
- _NativeSSPI.cs
- Composition.cs
- NamedPipeTransportSecurityElement.cs
- PtsPage.cs
- LoginAutoFormat.cs
- CaseCqlBlock.cs
- WebPartConnectionsConfigureVerb.cs
- ClientApiGenerator.cs
- FixedSOMElement.cs
- RectangleHotSpot.cs
- Glyph.cs
- MemoryFailPoint.cs
- InkCanvasSelection.cs
- Missing.cs
- CodeStatement.cs
- recordstatescratchpad.cs
- PasswordDeriveBytes.cs
- ContentElement.cs
- Control.cs
- FileDialogCustomPlacesCollection.cs
- IProvider.cs
- OAVariantLib.cs
- UserPreference.cs
- DoubleMinMaxAggregationOperator.cs
- DockAndAnchorLayout.cs