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
- ColorAnimation.cs
- XmlEnumAttribute.cs
- DataTrigger.cs
- IPAddress.cs
- CodeFieldReferenceExpression.cs
- MLangCodePageEncoding.cs
- DateTimeFormatInfoScanner.cs
- WorkflowClientDeliverMessageWrapper.cs
- EncoderReplacementFallback.cs
- ObjectQuery_EntitySqlExtensions.cs
- AnnouncementService.cs
- Hex.cs
- RoleGroupCollection.cs
- ProtocolsConfigurationHandler.cs
- TemplatePagerField.cs
- StringResourceManager.cs
- Rfc2898DeriveBytes.cs
- TraceUtility.cs
- SoapCodeExporter.cs
- CriticalHandle.cs
- DataGridViewRowConverter.cs
- AuthenticationService.cs
- HandoffBehavior.cs
- FrameworkContentElement.cs
- CommandBinding.cs
- PathParser.cs
- ProcessHostFactoryHelper.cs
- SynchronizedPool.cs
- DefinitionProperties.cs
- DetailsViewCommandEventArgs.cs
- ChangePassword.cs
- Visual.cs
- FilterQueryOptionExpression.cs
- QueryPageSettingsEventArgs.cs
- NTAccount.cs
- AbsoluteQuery.cs
- StreamInfo.cs
- CounterNameConverter.cs
- InstanceData.cs
- UpdateCommand.cs
- XmlUnspecifiedAttribute.cs
- PerspectiveCamera.cs
- Visual3D.cs
- WebCodeGenerator.cs
- ScaleTransform3D.cs
- XmlChildEnumerator.cs
- odbcmetadatafactory.cs
- ConfigurationProperty.cs
- Base64WriteStateInfo.cs
- EpmSyndicationContentSerializer.cs
- HttpHandlersSection.cs
- XamlTypeMapper.cs
- ListViewGroupConverter.cs
- ChannelBinding.cs
- DescendantOverDescendantQuery.cs
- EndpointConfigContainer.cs
- WindowsTreeView.cs
- Int16.cs
- MultiPropertyDescriptorGridEntry.cs
- Schema.cs
- XmlNavigatorFilter.cs
- DispatchProxy.cs
- SafeHandles.cs
- ResourceProviderFactory.cs
- CriticalExceptions.cs
- PlainXmlWriter.cs
- UnSafeCharBuffer.cs
- AlternateViewCollection.cs
- ElementHostPropertyMap.cs
- XappLauncher.cs
- RotateTransform3D.cs
- M3DUtil.cs
- BitStream.cs
- NetworkInformationException.cs
- XmlUtilWriter.cs
- AsymmetricKeyExchangeFormatter.cs
- TableAdapterManagerHelper.cs
- CultureNotFoundException.cs
- DbConnectionStringCommon.cs
- TextParentUndoUnit.cs
- DelimitedListTraceListener.cs
- ComponentRenameEvent.cs
- ThicknessConverter.cs
- Send.cs
- OptimisticConcurrencyException.cs
- StrokeSerializer.cs
- PathFigureCollection.cs
- UnmanagedMemoryStream.cs
- MimePart.cs
- HostedElements.cs
- FollowerQueueCreator.cs
- MessageBodyDescription.cs
- UserControlAutomationPeer.cs
- AsyncInvokeOperation.cs
- ImageBrush.cs
- CompModSwitches.cs
- Queue.cs
- bidPrivateBase.cs
- MatrixAnimationBase.cs
- XsltInput.cs