Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Data / System / Data / DataColumnChangeEvent.cs / 1 / DataColumnChangeEvent.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data { using System; ////// #if WINFSInternalOnly internal #else public #endif class DataColumnChangeEventArgs : EventArgs { private readonly DataRow _row; private DataColumn _column; private object _proposedValue; internal DataColumnChangeEventArgs(DataRow row) { _row = row; } ////// Provides data for the ///event. /// /// public DataColumnChangeEventArgs(DataRow row, DataColumn column, object value) { _row = row; _column = column; _proposedValue = value; } ////// Initializes a new instance of the ///class. /// /// public DataColumn Column { get { return _column; } } ///Gets the column whose value is changing. ////// public DataRow Row { get { return _row; } } ///Gets the row whose value is changing. ////// public object ProposedValue { get { return _proposedValue; } set { _proposedValue = value; } } internal void InitializeColumnChangeEvent(DataColumn column, object value) { _column = column; _proposedValue = value; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.Gets or sets the proposed value. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- COM2Enum.cs
- RemoteWebConfigurationHost.cs
- CodeDirectionExpression.cs
- LightweightCodeGenerator.cs
- VersionedStream.cs
- ProtocolsConfiguration.cs
- WindowsEditBoxRange.cs
- PenLineCapValidation.cs
- TraceHandler.cs
- DesignTimeXamlWriter.cs
- ExpandCollapseProviderWrapper.cs
- LateBoundBitmapDecoder.cs
- DispatcherOperation.cs
- MailMessage.cs
- IgnoreFileBuildProvider.cs
- SamlAuthorityBinding.cs
- WindowsFont.cs
- IssuedTokenServiceCredential.cs
- XmlRawWriterWrapper.cs
- HasCopySemanticsAttribute.cs
- updatecommandorderer.cs
- Duration.cs
- UrlMappingCollection.cs
- RenderData.cs
- OdbcStatementHandle.cs
- AuthenticationModuleElement.cs
- RemotingException.cs
- ItemChangedEventArgs.cs
- EdmError.cs
- PngBitmapEncoder.cs
- ActivityStatusChangeEventArgs.cs
- BoolExpr.cs
- ArglessEventHandlerProxy.cs
- Faults.cs
- GenerateTemporaryTargetAssembly.cs
- MaskInputRejectedEventArgs.cs
- RegexGroup.cs
- UIElementIsland.cs
- AbstractSvcMapFileLoader.cs
- ComplexBindingPropertiesAttribute.cs
- TranslateTransform3D.cs
- RefreshEventArgs.cs
- BuildManagerHost.cs
- ImpersonateTokenRef.cs
- DES.cs
- LocationReferenceEnvironment.cs
- ParallelTimeline.cs
- RNGCryptoServiceProvider.cs
- XmlConverter.cs
- HttpCookieCollection.cs
- XmlSchemaNotation.cs
- LinkedResourceCollection.cs
- RequestTimeoutManager.cs
- OpenTypeLayout.cs
- TextSelectionHelper.cs
- OleDbConnectionFactory.cs
- FixedSOMPageConstructor.cs
- HwndHost.cs
- Touch.cs
- XmlText.cs
- QueueException.cs
- BitmapEffectDrawing.cs
- ExternalDataExchangeService.cs
- CapabilitiesPattern.cs
- HttpRawResponse.cs
- DBSchemaRow.cs
- BaseDataListPage.cs
- WindowsAuthenticationModule.cs
- HintTextMaxWidthConverter.cs
- SignatureToken.cs
- SafeCryptContextHandle.cs
- TableLayoutPanelBehavior.cs
- OutputScopeManager.cs
- DataRow.cs
- MessageSecurityVersion.cs
- ResourceDefaultValueAttribute.cs
- BCLDebug.cs
- SqlFlattener.cs
- DataBindingCollectionConverter.cs
- RightsManagementSuppressedStream.cs
- Matrix3DConverter.cs
- Size.cs
- DefaultProxySection.cs
- ResolveNameEventArgs.cs
- SetterBaseCollection.cs
- LineInfo.cs
- DiagnosticStrings.cs
- EntityDataSourceValidationException.cs
- HwndHost.cs
- SerialPinChanges.cs
- SettingsPropertyIsReadOnlyException.cs
- SamlAdvice.cs
- TextAdaptor.cs
- SmiRecordBuffer.cs
- DispatcherEventArgs.cs
- MetadataException.cs
- PointAnimationClockResource.cs
- DirtyTextRange.cs
- AppearanceEditorPart.cs
- HtmlMobileTextWriter.cs