Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / Xml / System / Xml / Dom / XmlNodeChangedEventArgs.cs / 1 / XmlNodeChangedEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml { public class XmlNodeChangedEventArgs : EventArgs { private XmlNodeChangedAction action; private XmlNode node; private XmlNode oldParent; private XmlNode newParent; private string oldValue; private string newValue; public XmlNodeChangedEventArgs( XmlNode node, XmlNode oldParent, XmlNode newParent, string oldValue, string newValue, XmlNodeChangedAction action ) { this.node = node; this.oldParent = oldParent; this.newParent = newParent; this.action = action; this.oldValue = oldValue; this.newValue = newValue; } public XmlNodeChangedAction Action { get { return action; } } public XmlNode Node { get { return node; } } public XmlNode OldParent { get { return oldParent; } } public XmlNode NewParent { get { return newParent; } } public string OldValue { get { return oldValue; } } public string NewValue { get { return 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
- BuildProvider.cs
- InputProcessorProfilesLoader.cs
- LocationFactory.cs
- XmlILStorageConverter.cs
- WebPartDesigner.cs
- OpenFileDialog.cs
- ModifierKeysValueSerializer.cs
- PageRequestManager.cs
- StyleReferenceConverter.cs
- CanonicalXml.cs
- InputScope.cs
- CustomWebEventKey.cs
- WsdlImporterElement.cs
- ChannelTerminatedException.cs
- MulticastIPAddressInformationCollection.cs
- XmlSubtreeReader.cs
- basevalidator.cs
- LayoutTable.cs
- Confirm.cs
- PermissionSet.cs
- ComboBoxAutomationPeer.cs
- ListBindingHelper.cs
- SolidColorBrush.cs
- DecoderReplacementFallback.cs
- VisualProxy.cs
- CFStream.cs
- DataGridCellClipboardEventArgs.cs
- MessageDesigner.cs
- Label.cs
- JapaneseCalendar.cs
- GenericUI.cs
- Viewport3DVisual.cs
- PropertiesTab.cs
- Int64AnimationUsingKeyFrames.cs
- OperatingSystem.cs
- LiteralControl.cs
- WorkflowServiceBehavior.cs
- RoutedEventArgs.cs
- MappingItemCollection.cs
- CultureData.cs
- CompilerResults.cs
- InputGestureCollection.cs
- ObjectHandle.cs
- AnimationClock.cs
- ValueUtilsSmi.cs
- DesignerActionItem.cs
- WebPartDescription.cs
- ListViewCommandEventArgs.cs
- RoleManagerModule.cs
- HybridDictionary.cs
- MultidimensionalArrayItemReference.cs
- FormViewCommandEventArgs.cs
- TableDetailsRow.cs
- StandardOleMarshalObject.cs
- DataGridViewColumn.cs
- Query.cs
- Point3DValueSerializer.cs
- PropertyGeneratedEventArgs.cs
- EncryptedKey.cs
- ConstraintConverter.cs
- ShaderEffect.cs
- SocketElement.cs
- FlowDocumentReader.cs
- CapiHashAlgorithm.cs
- InputLanguageManager.cs
- SplitterCancelEvent.cs
- DeferredElementTreeState.cs
- WsiProfilesElementCollection.cs
- Literal.cs
- SqlTypesSchemaImporter.cs
- LockCookie.cs
- ListContractAdapter.cs
- XmlSchemaInfo.cs
- ItemCheckedEvent.cs
- PageCopyCount.cs
- NavigationHelper.cs
- DataServiceResponse.cs
- DataGridViewCellCollection.cs
- FixedFindEngine.cs
- DefaultEventAttribute.cs
- DBCSCodePageEncoding.cs
- PowerStatus.cs
- LineProperties.cs
- RenamedEventArgs.cs
- ComplexTypeEmitter.cs
- FlowDocumentPage.cs
- ListParaClient.cs
- DataContractSerializer.cs
- SqlAliasesReferenced.cs
- TaskCanceledException.cs
- DayRenderEvent.cs
- ToolboxBitmapAttribute.cs
- ListSurrogate.cs
- ObjRef.cs
- SHA384.cs
- RequestCacheValidator.cs
- XpsException.cs
- SchemaNamespaceManager.cs
- ImageFormatConverter.cs
- DataGridViewToolTip.cs