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
- DesigntimeLicenseContext.cs
- ValidationPropertyAttribute.cs
- CodeMemberProperty.cs
- ResourceSet.cs
- XappLauncher.cs
- XmlHierarchicalDataSourceView.cs
- StatusBarPanelClickEvent.cs
- SmiContext.cs
- InteropAutomationProvider.cs
- SqlFlattener.cs
- ParseChildrenAsPropertiesAttribute.cs
- Odbc32.cs
- StructuredType.cs
- followingquery.cs
- ErrorLog.cs
- PreservationFileReader.cs
- FactoryGenerator.cs
- PrintPreviewControl.cs
- OdbcUtils.cs
- DbXmlEnabledProviderManifest.cs
- XPathEmptyIterator.cs
- WindowsClientCredential.cs
- LineInfo.cs
- ExceptionHandlersDesigner.cs
- DocobjHost.cs
- ProcessThreadDesigner.cs
- ToolboxItemWrapper.cs
- IndividualDeviceConfig.cs
- FileDialogCustomPlacesCollection.cs
- DbParameterHelper.cs
- BrowsableAttribute.cs
- FileChangeNotifier.cs
- XPathNavigator.cs
- DesignerActionItemCollection.cs
- MessageSecurityOverMsmq.cs
- IERequestCache.cs
- BoundColumn.cs
- HwndMouseInputProvider.cs
- ScaleTransform.cs
- ShaderEffect.cs
- EdmComplexPropertyAttribute.cs
- HebrewNumber.cs
- CollectionConverter.cs
- DefinitionProperties.cs
- ParamArrayAttribute.cs
- VirtualPathProvider.cs
- IndentTextWriter.cs
- ParameterToken.cs
- ListViewCommandEventArgs.cs
- VideoDrawing.cs
- SecurityHeaderLayout.cs
- InputLanguageSource.cs
- ValidationRuleCollection.cs
- XmlAttributeCache.cs
- NumberFormatInfo.cs
- ArrayHelper.cs
- ScriptDescriptor.cs
- _NTAuthentication.cs
- ConnectionDemuxer.cs
- Deserializer.cs
- Binding.cs
- Parameter.cs
- DataServiceConfiguration.cs
- NativeWindow.cs
- DbConnectionClosed.cs
- Visual.cs
- HMACSHA384.cs
- WebPageTraceListener.cs
- DBDataPermissionAttribute.cs
- DependencyPropertyChangedEventArgs.cs
- _ScatterGatherBuffers.cs
- DataGridViewSelectedColumnCollection.cs
- ExpressionEditorAttribute.cs
- ToolStripSeparatorRenderEventArgs.cs
- ObjectManager.cs
- SystemBrushes.cs
- BinaryOperationBinder.cs
- LineInfo.cs
- HtmlImage.cs
- Themes.cs
- Utility.cs
- Classification.cs
- RectangleF.cs
- QueryableDataSourceEditData.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- DirectoryLocalQuery.cs
- KeyTimeConverter.cs
- WebPartTransformerAttribute.cs
- TreeSet.cs
- XPathScanner.cs
- FamilyCollection.cs
- SymmetricSecurityProtocolFactory.cs
- ScriptServiceAttribute.cs
- ColorTransform.cs
- WorkflowStateRollbackService.cs
- TabItemWrapperAutomationPeer.cs
- datacache.cs
- Listbox.cs
- MediaSystem.cs
- GcSettings.cs