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
- PropertyGridEditorPart.cs
- ConfigurationSection.cs
- CellQuery.cs
- Repeater.cs
- SynchronizationLockException.cs
- SqlNotificationEventArgs.cs
- SparseMemoryStream.cs
- ExclusiveHandleList.cs
- WeakReferenceList.cs
- GroupStyle.cs
- RSAPKCS1KeyExchangeFormatter.cs
- TextElementEnumerator.cs
- XsdDateTime.cs
- TraceContextEventArgs.cs
- DataGridCellItemAutomationPeer.cs
- DebugView.cs
- counter.cs
- XPathDocumentNavigator.cs
- GcSettings.cs
- FrameworkElementAutomationPeer.cs
- SqlParameterizer.cs
- SQLBoolean.cs
- GraphicsPathIterator.cs
- LogicalChannel.cs
- WebEventCodes.cs
- Message.cs
- SoapTypeAttribute.cs
- SecureConversationVersion.cs
- TransactedBatchingBehavior.cs
- EntityDataSourceConfigureObjectContextPanel.cs
- DependencyPropertyKey.cs
- ProtocolsConfigurationEntry.cs
- DynamicVirtualDiscoSearcher.cs
- LineSegment.cs
- TemplateControlBuildProvider.cs
- GroupBox.cs
- CharEntityEncoderFallback.cs
- ConfigurationLocation.cs
- cookiecollection.cs
- ValidationErrorCollection.cs
- RevocationPoint.cs
- VectorAnimationBase.cs
- CopyAttributesAction.cs
- ConstraintCollection.cs
- EventLogRecord.cs
- QilXmlReader.cs
- RootBrowserWindowProxy.cs
- CompilerTypeWithParams.cs
- DataGridPageChangedEventArgs.cs
- UserNameSecurityTokenProvider.cs
- DeferredSelectedIndexReference.cs
- DataGridState.cs
- DtrList.cs
- CompModSwitches.cs
- FileVersionInfo.cs
- ByteStack.cs
- ChannelSinkStacks.cs
- PropertyItemInternal.cs
- OpenFileDialog.cs
- CompilerCollection.cs
- SequenceDesigner.cs
- XmlCountingReader.cs
- DataGridRowAutomationPeer.cs
- MetadataException.cs
- WindowsToolbar.cs
- DataGridTextBoxColumn.cs
- IdnMapping.cs
- BulletedList.cs
- TokenCreationParameter.cs
- EntitySetBaseCollection.cs
- ClientRuntimeConfig.cs
- RTLAwareMessageBox.cs
- ProxyWebPart.cs
- FunctionCommandText.cs
- SynchronizedChannelCollection.cs
- newinstructionaction.cs
- LicenseManager.cs
- HtmlInputSubmit.cs
- Help.cs
- DataGridViewDataErrorEventArgs.cs
- WindowsHyperlink.cs
- Int32Storage.cs
- ProjectionAnalyzer.cs
- NetNamedPipeBindingCollectionElement.cs
- DataGridViewTopRowAccessibleObject.cs
- BuildProvider.cs
- ADConnectionHelper.cs
- HttpChannelHelpers.cs
- IApplicationTrustManager.cs
- GenericParameterDataContract.cs
- CompositionAdorner.cs
- ResourceAttributes.cs
- NameGenerator.cs
- GorillaCodec.cs
- IteratorDescriptor.cs
- TypedElement.cs
- RegexGroupCollection.cs
- LogWriteRestartAreaAsyncResult.cs
- InternalsVisibleToAttribute.cs
- GetWinFXPath.cs