Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ //// 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
- WebPartConnectionsEventArgs.cs
- Converter.cs
- AddInController.cs
- FormViewDeletedEventArgs.cs
- ArrayExtension.cs
- ToolStripMenuItem.cs
- WebEventCodes.cs
- SequenceNumber.cs
- StateManagedCollection.cs
- ConnectionStringsSection.cs
- WaitHandleCannotBeOpenedException.cs
- ElementHost.cs
- InvalidDataException.cs
- Padding.cs
- XmlNavigatorFilter.cs
- GuidelineSet.cs
- Pts.cs
- TextBox.cs
- WindowsGrip.cs
- SettingsProviderCollection.cs
- SignedInfo.cs
- UserPersonalizationStateInfo.cs
- DataGridViewTopRowAccessibleObject.cs
- mda.cs
- Sql8ConformanceChecker.cs
- DbDeleteCommandTree.cs
- SizeF.cs
- ZoneLinkButton.cs
- ListViewCancelEventArgs.cs
- WebPartEventArgs.cs
- DataGridViewHitTestInfo.cs
- DataTableMapping.cs
- TraceListeners.cs
- OdbcCommandBuilder.cs
- EntityDataSourceViewSchema.cs
- Regex.cs
- OutArgument.cs
- PeerChannelFactory.cs
- TemplateNodeContextMenu.cs
- ActiveDesignSurfaceEvent.cs
- RadioButtonBaseAdapter.cs
- WebConfigurationHostFileChange.cs
- RectangleConverter.cs
- SubMenuStyle.cs
- DecoderFallbackWithFailureFlag.cs
- TrackingConditionCollection.cs
- XamlParser.cs
- LocalizationParserHooks.cs
- DataGridViewCellCollection.cs
- DSASignatureFormatter.cs
- __Error.cs
- DesignTimeTemplateParser.cs
- ListViewTableRow.cs
- SoapBinding.cs
- PerformanceCounterPermissionAttribute.cs
- ViewManager.cs
- StylusPlugin.cs
- HostedBindingBehavior.cs
- GAC.cs
- ToolStripDropDown.cs
- PathSegment.cs
- SiteMap.cs
- CollectionContainer.cs
- EventWaitHandleSecurity.cs
- ObservableCollection.cs
- MasterPage.cs
- ResourceManager.cs
- PolyBezierSegment.cs
- OutputChannelBinder.cs
- ScrollBar.cs
- EditCommandColumn.cs
- HwndKeyboardInputProvider.cs
- VoiceInfo.cs
- RuleSetCollection.cs
- SessionIDManager.cs
- MimeWriter.cs
- FrameworkElement.cs
- FacetChecker.cs
- XPathSelectionIterator.cs
- ObjectNotFoundException.cs
- ProfilePropertyMetadata.cs
- SaveFileDialog.cs
- MutableAssemblyCacheEntry.cs
- SqlCacheDependency.cs
- PageStatePersister.cs
- SchemaImporterExtensionsSection.cs
- DesignerVerbCollection.cs
- PrefixQName.cs
- TypeSystemProvider.cs
- GPPOINT.cs
- Debug.cs
- ResourceKey.cs
- DataObjectFieldAttribute.cs
- AuthorizationRule.cs
- GregorianCalendarHelper.cs
- Preprocessor.cs
- DrawingGroup.cs
- UInt64Converter.cs
- XPathException.cs
- ArgumentReference.cs