Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / Dom / XmlNodeChangedEventArgs.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ToolStripSettings.cs
- RecordManager.cs
- WebRequestModulesSection.cs
- DetectEofStream.cs
- DataTemplateSelector.cs
- XmlUnspecifiedAttribute.cs
- GraphicsPath.cs
- TextServicesCompartmentEventSink.cs
- InputQueueChannel.cs
- DataViewManager.cs
- SqlDuplicator.cs
- MSAAWinEventWrap.cs
- BitmapDecoder.cs
- ExpressionEditorAttribute.cs
- BaseCodePageEncoding.cs
- sortedlist.cs
- Buffer.cs
- Win32PrintDialog.cs
- PersonalizationStateInfoCollection.cs
- WebConfigurationHost.cs
- TlsnegoTokenAuthenticator.cs
- TemplateEditingFrame.cs
- EventSourceCreationData.cs
- VirtualDirectoryMapping.cs
- wgx_commands.cs
- ResourceType.cs
- ProtocolsConfigurationEntry.cs
- SafeFileMappingHandle.cs
- SqlCharStream.cs
- SubMenuStyleCollection.cs
- XamlClipboardData.cs
- CatalogPart.cs
- TextAction.cs
- PriorityBinding.cs
- XmlILConstructAnalyzer.cs
- Subtree.cs
- printdlgexmarshaler.cs
- RuntimeResourceSet.cs
- SourceExpressionException.cs
- OpenTypeLayoutCache.cs
- XmlAtomicValue.cs
- OleDbErrorCollection.cs
- AttachedPropertyMethodSelector.cs
- EventArgs.cs
- StringValueSerializer.cs
- TypeToArgumentTypeConverter.cs
- ContainerFilterService.cs
- NamespaceDecl.cs
- DataObjectPastingEventArgs.cs
- DynamicField.cs
- WhitespaceSignificantCollectionAttribute.cs
- StringExpressionSet.cs
- BooleanKeyFrameCollection.cs
- SerializationInfo.cs
- ToolStripMenuItem.cs
- MetadataSection.cs
- QilLiteral.cs
- LogicalTreeHelper.cs
- ConstraintEnumerator.cs
- Exception.cs
- InfoCardSymmetricCrypto.cs
- ScriptControlManager.cs
- ThrowHelper.cs
- ImplicitInputBrush.cs
- PrefixHandle.cs
- PageRequestManager.cs
- DocumentPageHost.cs
- HttpCapabilitiesBase.cs
- InvalidateEvent.cs
- ReachDocumentPageSerializer.cs
- ChildrenQuery.cs
- ParallelRangeManager.cs
- DataSpaceManager.cs
- HtmlInputReset.cs
- UIElement3DAutomationPeer.cs
- DetailsViewDeletedEventArgs.cs
- AjaxFrameworkAssemblyAttribute.cs
- OdbcInfoMessageEvent.cs
- ExtentCqlBlock.cs
- OdbcUtils.cs
- Button.cs
- TrustLevelCollection.cs
- DrawingImage.cs
- TypeGeneratedEventArgs.cs
- DataGridCellsPresenter.cs
- ObsoleteAttribute.cs
- HttpEncoderUtility.cs
- CommonRemoteMemoryBlock.cs
- ExtenderProvidedPropertyAttribute.cs
- RegexReplacement.cs
- DataTemplateKey.cs
- ControlCollection.cs
- XmlRootAttribute.cs
- MasterPageParser.cs
- HtmlWindow.cs
- CounterCreationDataCollection.cs
- TdsParser.cs
- SqlTopReducer.cs
- SimpleHandlerFactory.cs
- RijndaelCryptoServiceProvider.cs