Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- SchemaAttDef.cs
- OdbcConnection.cs
- PermissionToken.cs
- Padding.cs
- _DigestClient.cs
- XPathNavigator.cs
- AppSettingsExpressionBuilder.cs
- ClientSettingsStore.cs
- FontStyle.cs
- XmlAttributeAttribute.cs
- ResourceDescriptionAttribute.cs
- QueryContinueDragEvent.cs
- HttpDebugHandler.cs
- WebEncodingValidatorAttribute.cs
- objectresult_tresulttype.cs
- FileReservationCollection.cs
- TreeIterator.cs
- Bold.cs
- NoClickablePointException.cs
- Variant.cs
- initElementDictionary.cs
- SessionState.cs
- CollaborationHelperFunctions.cs
- ExpressionBindings.cs
- X509InitiatorCertificateClientElement.cs
- SettingsSection.cs
- Membership.cs
- SchemaImporterExtensionsSection.cs
- TrustLevelCollection.cs
- ImageInfo.cs
- CharacterBufferReference.cs
- DbParameterHelper.cs
- TextureBrush.cs
- ProfileGroupSettings.cs
- sqlinternaltransaction.cs
- XmlParserContext.cs
- WindowCollection.cs
- XXXOnTypeBuilderInstantiation.cs
- DataGridViewCheckBoxColumn.cs
- IImplicitResourceProvider.cs
- SecurityResources.cs
- StorageScalarPropertyMapping.cs
- ConfigXmlComment.cs
- CustomErrorsSectionWrapper.cs
- ComPlusAuthorization.cs
- MessagePropertyFilter.cs
- ConnectionsZone.cs
- XmlExtensionFunction.cs
- StagingAreaInputItem.cs
- TransformerInfo.cs
- FormViewPageEventArgs.cs
- Stacktrace.cs
- DataGridViewButtonCell.cs
- DomNameTable.cs
- Table.cs
- ImageMap.cs
- MTConfigUtil.cs
- BamlRecords.cs
- HtmlTextViewAdapter.cs
- ObjectDataSourceFilteringEventArgs.cs
- DynamicPhysicalDiscoSearcher.cs
- GetFileNameResult.cs
- DoubleAnimationBase.cs
- XmlSchemaException.cs
- ExpressionBindingCollection.cs
- DecimalAnimation.cs
- SupportingTokenProviderSpecification.cs
- SrgsElementFactory.cs
- _NegoStream.cs
- GeometryCollection.cs
- FieldAccessException.cs
- Mapping.cs
- CompilationLock.cs
- IconConverter.cs
- AccessControlList.cs
- ImageField.cs
- SwitchAttribute.cs
- BitmapInitialize.cs
- DefaultValueAttribute.cs
- CharacterMetrics.cs
- XmlAnyElementAttributes.cs
- AssociationSet.cs
- RecognizedWordUnit.cs
- ByteArrayHelperWithString.cs
- AssertSection.cs
- DataGridViewButtonCell.cs
- PropertyExpression.cs
- OlePropertyStructs.cs
- VisualStyleTypesAndProperties.cs
- odbcmetadatacollectionnames.cs
- ObjectListSelectEventArgs.cs
- TextSerializer.cs
- EntityConnectionStringBuilderItem.cs
- ApplicationCommands.cs
- webeventbuffer.cs
- RemotingConfigParser.cs
- HttpServerVarsCollection.cs
- UTF8Encoding.cs
- Events.cs
- VisualBrush.cs