Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Data / System / Data / DataColumnChangeEvent.cs / 1305376 / DataColumnChangeEvent.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data { using System; ////// public 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.Gets or sets the proposed value. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- StdValidatorsAndConverters.cs
- ResXResourceSet.cs
- UnsafeNativeMethods.cs
- PerfProviderCollection.cs
- QuarticEase.cs
- VariantWrapper.cs
- ExitEventArgs.cs
- ReadWriteSpinLock.cs
- SQLBytesStorage.cs
- ServiceDescriptionImporter.cs
- BevelBitmapEffect.cs
- ItemList.cs
- DocumentSequence.cs
- CompilerGeneratedAttribute.cs
- TextServicesPropertyRanges.cs
- DPTypeDescriptorContext.cs
- RegexStringValidator.cs
- UnionCodeGroup.cs
- StorageRoot.cs
- SqlNotificationRequest.cs
- ProcessModelInfo.cs
- TextTreeTextBlock.cs
- CodeTypeOfExpression.cs
- AddInActivator.cs
- TreeViewDesigner.cs
- StoreUtilities.cs
- InfoCardMasterKey.cs
- StaticResourceExtension.cs
- SafeFileMappingHandle.cs
- NCryptSafeHandles.cs
- SimpleBitVector32.cs
- ListParagraph.cs
- ExceptionHandler.cs
- UnsafeCollabNativeMethods.cs
- KeyInfo.cs
- CommonEndpointBehaviorElement.cs
- NativeMethods.cs
- TextBoxLine.cs
- TextParentUndoUnit.cs
- HashCodeCombiner.cs
- SmtpAuthenticationManager.cs
- EntityTypeBase.cs
- StringFormat.cs
- SizeAnimationClockResource.cs
- SmtpCommands.cs
- ObjectRef.cs
- EntityDataSourceQueryBuilder.cs
- OrderedDictionaryStateHelper.cs
- ParallelTimeline.cs
- DataViewManager.cs
- XmlSerializerAssemblyAttribute.cs
- ITextView.cs
- ByteStreamGeometryContext.cs
- ReflectionServiceProvider.cs
- XmlAttributes.cs
- CompoundFileIOPermission.cs
- DynamicActionMessageFilter.cs
- XmlCountingReader.cs
- TransformGroup.cs
- HttpStaticObjectsCollectionWrapper.cs
- SymbolEqualComparer.cs
- ToolTipAutomationPeer.cs
- XmlLanguage.cs
- ExpressionBuilder.cs
- Processor.cs
- PipelineModuleStepContainer.cs
- ApplicationFileParser.cs
- FixedSOMTableRow.cs
- NGCUIElementCollectionSerializerAsync.cs
- ImageSourceConverter.cs
- CultureTable.cs
- SwitchLevelAttribute.cs
- ConnectionOrientedTransportElement.cs
- ResourceDescriptionAttribute.cs
- SoundPlayerAction.cs
- RootBrowserWindow.cs
- HttpModule.cs
- ShapingEngine.cs
- WebPartMinimizeVerb.cs
- RemoteDebugger.cs
- ListViewDeleteEventArgs.cs
- DllNotFoundException.cs
- DataGridViewCellConverter.cs
- ImportContext.cs
- EDesignUtil.cs
- IFormattable.cs
- UIElementHelper.cs
- SystemMulticastIPAddressInformation.cs
- WindowsScrollBarBits.cs
- AccessText.cs
- Binding.cs
- ToolBarButtonClickEvent.cs
- Int16Storage.cs
- BitmapEffect.cs
- FormsAuthenticationEventArgs.cs
- DynamicRendererThreadManager.cs
- Common.cs
- PopupRoot.cs
- State.cs
- PropertyManager.cs