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
- SoapSchemaExporter.cs
- XmlCharacterData.cs
- SecureStringHasher.cs
- LabelAutomationPeer.cs
- Underline.cs
- SchemaImporterExtension.cs
- GAC.cs
- PartialArray.cs
- ColorConvertedBitmap.cs
- DataGridViewCellCollection.cs
- AuthenticationSchemesHelper.cs
- CodeCatchClauseCollection.cs
- FormatterConverter.cs
- SimpleType.cs
- HashJoinQueryOperatorEnumerator.cs
- DispatcherHookEventArgs.cs
- MemoryRecordBuffer.cs
- Convert.cs
- IFlowDocumentViewer.cs
- TextInfo.cs
- CodeMethodReturnStatement.cs
- BitmapCodecInfoInternal.cs
- ResXBuildProvider.cs
- ListenDesigner.cs
- ActivationServices.cs
- login.cs
- BaseValidatorDesigner.cs
- XPathNavigator.cs
- SamlSubject.cs
- _ListenerResponseStream.cs
- SectionUpdates.cs
- Brushes.cs
- EntityContainerEntitySet.cs
- ConsumerConnectionPoint.cs
- RectIndependentAnimationStorage.cs
- ThreadNeutralSemaphore.cs
- ProfileParameter.cs
- ResourceLoader.cs
- ApplicationServiceHelper.cs
- DataGridViewLayoutData.cs
- IPipelineRuntime.cs
- Literal.cs
- Repeater.cs
- COM2IDispatchConverter.cs
- OperandQuery.cs
- TextContainerChangedEventArgs.cs
- AuthenticationModuleElement.cs
- ADMembershipProvider.cs
- ObjectQueryExecutionPlan.cs
- EditingCommands.cs
- TableDetailsCollection.cs
- HotCommands.cs
- SessionStateModule.cs
- XmlUtilWriter.cs
- BookmarkUndoUnit.cs
- CustomErrorCollection.cs
- ApplicationCommands.cs
- SQLSingleStorage.cs
- ReversePositionQuery.cs
- DataSpaceManager.cs
- CommandDevice.cs
- MultiPropertyDescriptorGridEntry.cs
- PackUriHelper.cs
- CryptoApi.cs
- CaseInsensitiveOrdinalStringComparer.cs
- HttpServerChannel.cs
- NumberFunctions.cs
- BaseContextMenu.cs
- UnicastIPAddressInformationCollection.cs
- CompilationSection.cs
- FontStyle.cs
- MergeEnumerator.cs
- DescendentsWalker.cs
- UnknownWrapper.cs
- GlyphRunDrawing.cs
- DesignerVerbCollection.cs
- Material.cs
- ImageMetadata.cs
- ConstraintStruct.cs
- ContextMarshalException.cs
- XpsS0ValidatingLoader.cs
- ItemsControl.cs
- WindowsFont.cs
- BrowserCapabilitiesFactory.cs
- HtmlLink.cs
- EventDescriptorCollection.cs
- X509ChainPolicy.cs
- PrimarySelectionGlyph.cs
- XPathDocument.cs
- TlsnegoTokenProvider.cs
- BinaryObjectWriter.cs
- Visual3D.cs
- ServiceModelEnumValidatorAttribute.cs
- RoleManagerSection.cs
- HtmlInputText.cs
- MarkupProperty.cs
- mongolianshape.cs
- ContextInformation.cs
- ErrorInfoXmlDocument.cs
- ToolboxItemCollection.cs