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
- SessionState.cs
- TextProperties.cs
- ScrollableControlDesigner.cs
- ReferenceConverter.cs
- StringFreezingAttribute.cs
- RadioButton.cs
- SourceSwitch.cs
- Literal.cs
- _HeaderInfoTable.cs
- InputLanguageManager.cs
- ButtonColumn.cs
- DataSourceHelper.cs
- TableCell.cs
- CngProperty.cs
- MenuAutomationPeer.cs
- DocumentGridPage.cs
- DataService.cs
- CompoundFileIOPermission.cs
- HttpListenerException.cs
- MailDefinition.cs
- SqlTransaction.cs
- ObjectListField.cs
- DocumentSequenceHighlightLayer.cs
- GradientStopCollection.cs
- BufferedStream.cs
- StylusDownEventArgs.cs
- FormatterConverter.cs
- Cursor.cs
- SchemaMerger.cs
- ColumnWidthChangingEvent.cs
- ViewStateModeByIdAttribute.cs
- XPathNodePointer.cs
- DeploymentSection.cs
- CodeCompiler.cs
- XmlWriter.cs
- TextUtf8RawTextWriter.cs
- StretchValidation.cs
- MultipleCopiesCollection.cs
- HwndSubclass.cs
- SelectingProviderEventArgs.cs
- SystemParameters.cs
- ComponentChangedEvent.cs
- FixedMaxHeap.cs
- WebRequest.cs
- DataGridViewCellValidatingEventArgs.cs
- StaticContext.cs
- XmlNodeWriter.cs
- NamedElement.cs
- OrderedEnumerableRowCollection.cs
- TheQuery.cs
- DoubleAnimation.cs
- Visual3D.cs
- StopRoutingHandler.cs
- SoapExtensionImporter.cs
- PictureBoxDesigner.cs
- InternalPolicyElement.cs
- EasingQuaternionKeyFrame.cs
- ToolStripRendererSwitcher.cs
- Variable.cs
- AuthenticationException.cs
- FixedSOMTableCell.cs
- DesignerToolboxInfo.cs
- WebConfigurationManager.cs
- CacheSection.cs
- DocumentOrderQuery.cs
- QueryStringParameter.cs
- CancelAsyncOperationRequest.cs
- StubHelpers.cs
- CacheHelper.cs
- AnimatedTypeHelpers.cs
- WinEventWrap.cs
- WizardForm.cs
- UriExt.cs
- DesignTimeVisibleAttribute.cs
- FileIOPermission.cs
- SharedTcpTransportManager.cs
- SecurityContextTokenCache.cs
- ToolstripProfessionalRenderer.cs
- HttpRuntimeSection.cs
- DocumentApplicationJournalEntry.cs
- OleStrCAMarshaler.cs
- DPAPIProtectedConfigurationProvider.cs
- DisplayMemberTemplateSelector.cs
- ThemeableAttribute.cs
- XsdValidatingReader.cs
- ColumnCollection.cs
- WinFormsUtils.cs
- controlskin.cs
- WebPartUserCapability.cs
- Parser.cs
- DataColumnPropertyDescriptor.cs
- BamlVersionHeader.cs
- ConcurrentDictionary.cs
- XmlDataSourceNodeDescriptor.cs
- ConfigXmlElement.cs
- SystemWebSectionGroup.cs
- ObjectContextServiceProvider.cs
- Attribute.cs
- TitleStyle.cs
- FaultDesigner.cs