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
- TokenizerHelper.cs
- XmlHierarchicalDataSourceView.cs
- NavigatorOutput.cs
- BCryptHashAlgorithm.cs
- LinearKeyFrames.cs
- NullExtension.cs
- ItemsControl.cs
- BlobPersonalizationState.cs
- PeerResolverMode.cs
- TimerElapsedEvenArgs.cs
- ControlsConfig.cs
- RectAnimationUsingKeyFrames.cs
- EntityDataSourceContainerNameItem.cs
- ConnectionPointGlyph.cs
- TextTreeFixupNode.cs
- RegisteredScript.cs
- SimpleApplicationHost.cs
- RequestCache.cs
- PermissionListSet.cs
- RegionInfo.cs
- Exceptions.cs
- ValueTypeFixupInfo.cs
- SqlProcedureAttribute.cs
- InputLanguageProfileNotifySink.cs
- ImageAutomationPeer.cs
- WebPartManagerDesigner.cs
- infer.cs
- path.cs
- TileBrush.cs
- Renderer.cs
- FilterableAttribute.cs
- BufferedGraphicsManager.cs
- WriteableBitmap.cs
- ProfilePropertySettings.cs
- AmbientLight.cs
- LazyTextWriterCreator.cs
- Decoder.cs
- NotificationContext.cs
- ImageFormatConverter.cs
- UnmanagedHandle.cs
- OrderedDictionary.cs
- MatrixTransform3D.cs
- WizardStepBase.cs
- PermissionSetTriple.cs
- StylesEditorDialog.cs
- AssemblyCache.cs
- NonSerializedAttribute.cs
- MultipleViewProviderWrapper.cs
- MultiView.cs
- oledbmetadatacollectionnames.cs
- VisualState.cs
- DataGridViewButtonColumn.cs
- GPPOINT.cs
- String.cs
- AbandonedMutexException.cs
- HierarchicalDataBoundControl.cs
- LiteralDesigner.cs
- dataSvcMapFileLoader.cs
- SectionRecord.cs
- DSASignatureDeformatter.cs
- CodeGeneratorOptions.cs
- PartialCachingAttribute.cs
- ServiceXNameTypeConverter.cs
- SemanticTag.cs
- AsymmetricAlgorithm.cs
- InstanceKey.cs
- GridViewAutomationPeer.cs
- UpdateCompiler.cs
- RijndaelManagedTransform.cs
- ScriptMethodAttribute.cs
- NetworkInformationException.cs
- AsyncDataRequest.cs
- TransportManager.cs
- ObjectStateEntry.cs
- GifBitmapEncoder.cs
- WindowsFormsHelpers.cs
- ManagementScope.cs
- DeploymentSection.cs
- Rotation3D.cs
- IndexingContentUnit.cs
- StyleSelector.cs
- TableChangeProcessor.cs
- ModelItemImpl.cs
- SubclassTypeValidatorAttribute.cs
- HandlerFactoryWrapper.cs
- ModuleConfigurationInfo.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- RangeValidator.cs
- EditingContext.cs
- RowSpanVector.cs
- PropertyMappingExceptionEventArgs.cs
- SqlParameter.cs
- InkPresenter.cs
- ValidatingReaderNodeData.cs
- DesignTimeSiteMapProvider.cs
- FilterException.cs
- GridViewCommandEventArgs.cs
- AddInPipelineAttributes.cs
- SerializerWriterEventHandlers.cs
- PeerNameResolver.cs