Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / MS / Internal / Data / BindingValueChangedEventArgs.cs / 1 / BindingValueChangedEventArgs.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: BindingValueChanged event arguments // // Specs: [....]/connecteddata/M5%20Specs/UIBinding.mht // //--------------------------------------------------------------------------- using System; namespace MS.Internal.Data { ////// Arguments for BindingValueChanged events. /// internal class BindingValueChangedEventArgs : EventArgs { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- internal BindingValueChangedEventArgs(object oldValue, object newValue) : base() { _oldValue = oldValue; _newValue = newValue; } //------------------------------------------------------ // // Public Properties // //----------------------------------------------------- ////// The old value of the binding. /// public object OldValue { get { return _oldValue; } } ////// The new value of the binding. /// public object NewValue { get { return _newValue; } } //------------------------------------------------------ // // Private Fields // //------------------------------------------------------ private object _oldValue, _newValue; } } // 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
- CounterCreationDataConverter.cs
- StrokeSerializer.cs
- TypeConvertions.cs
- SmiEventSink_DeferedProcessing.cs
- DataRecordInternal.cs
- DataKeyArray.cs
- FormViewRow.cs
- DiscoveryMessageSequenceCD1.cs
- CodeDefaultValueExpression.cs
- SqlDataSourceView.cs
- WindowAutomationPeer.cs
- EncryptedHeaderXml.cs
- ForwardPositionQuery.cs
- PageVisual.cs
- CodeDelegateCreateExpression.cs
- SignedPkcs7.cs
- TableRowsCollectionEditor.cs
- ProxyGenerationError.cs
- ObjectHandle.cs
- InvalidCardException.cs
- WebPartConnectionsEventArgs.cs
- SymmetricKey.cs
- ComponentResourceKeyConverter.cs
- DeferredBinaryDeserializerExtension.cs
- FormViewModeEventArgs.cs
- SelectionItemPattern.cs
- ConnectionInterfaceCollection.cs
- XPathNavigatorReader.cs
- XmlWellformedWriterHelpers.cs
- PersistenceProviderDirectory.cs
- DecimalFormatter.cs
- ControlParameter.cs
- ADRoleFactory.cs
- XmlName.cs
- TreeViewEvent.cs
- Crypto.cs
- PropertyNames.cs
- isolationinterop.cs
- ListViewItem.cs
- ValidatedControlConverter.cs
- ProxyAttribute.cs
- GeneralTransform3D.cs
- DispatcherProcessingDisabled.cs
- SequenceFullException.cs
- ControlsConfig.cs
- Crypto.cs
- _DomainName.cs
- ContextActivityUtils.cs
- Number.cs
- PeerNameRecordCollection.cs
- ConnectionManagementElementCollection.cs
- Subtree.cs
- adornercollection.cs
- CachingHintValidation.cs
- BindingValueChangedEventArgs.cs
- PrintPageEvent.cs
- FixedTextView.cs
- XMLSchema.cs
- OracleConnectionStringBuilder.cs
- CommandPlan.cs
- Trace.cs
- Rules.cs
- sqlpipe.cs
- AnnotationComponentManager.cs
- WebPartEventArgs.cs
- TouchFrameEventArgs.cs
- XmlArrayItemAttributes.cs
- SamlAssertionKeyIdentifierClause.cs
- CookielessHelper.cs
- TextRenderingModeValidation.cs
- MulticastNotSupportedException.cs
- EntityFrameworkVersions.cs
- PageAsyncTaskManager.cs
- COMException.cs
- TriState.cs
- Visual3D.cs
- Opcode.cs
- TextModifierScope.cs
- SQLBytes.cs
- XPathChildIterator.cs
- UndoManager.cs
- AuthenticatingEventArgs.cs
- DetailsViewRowCollection.cs
- ListenerConstants.cs
- StyleCollectionEditor.cs
- XmlTextAttribute.cs
- BindValidator.cs
- TextParentUndoUnit.cs
- GraphicsContext.cs
- DummyDataSource.cs
- LinqDataSourceContextEventArgs.cs
- ButtonBaseAdapter.cs
- TableLayoutStyleCollection.cs
- XmlArrayAttribute.cs
- PhonemeConverter.cs
- WsdlHelpGeneratorElement.cs
- PolicyManager.cs
- MainMenu.cs
- TextDecoration.cs
- BitConverter.cs