Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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
- CalendarDateRange.cs
- NullableFloatAverageAggregationOperator.cs
- ImageAnimator.cs
- KeyValuePairs.cs
- FileInfo.cs
- DoubleAnimationUsingKeyFrames.cs
- SecureEnvironment.cs
- SqlAggregateChecker.cs
- ListViewEditEventArgs.cs
- ImageButton.cs
- Automation.cs
- LambdaCompiler.Statements.cs
- CodeSnippetTypeMember.cs
- HttpFileCollection.cs
- EditorPartCollection.cs
- WebScriptMetadataMessageEncoderFactory.cs
- MetadataFile.cs
- PersonalizationStateInfoCollection.cs
- UrlParameterReader.cs
- StylusPointPropertyId.cs
- EpmCustomContentWriterNodeData.cs
- ActionFrame.cs
- UnitySerializationHolder.cs
- FullTextState.cs
- FormViewDeletedEventArgs.cs
- WebGetAttribute.cs
- MasterPageCodeDomTreeGenerator.cs
- Ops.cs
- Int64KeyFrameCollection.cs
- SchemaDeclBase.cs
- BitmapEffectDrawingContextState.cs
- ImmutableObjectAttribute.cs
- TemplateNameScope.cs
- XPathParser.cs
- DataSysAttribute.cs
- SiblingIterators.cs
- RightsManagementPermission.cs
- ActivityStatusChangeEventArgs.cs
- ListViewAutomationPeer.cs
- XmlSchemaIdentityConstraint.cs
- XPathEmptyIterator.cs
- Misc.cs
- Hashtable.cs
- ObjectDataSourceEventArgs.cs
- RelationshipConstraintValidator.cs
- PrintPreviewGraphics.cs
- ScriptingJsonSerializationSection.cs
- VariableQuery.cs
- GroupBox.cs
- TextWriter.cs
- UnaryNode.cs
- DataControlFieldCell.cs
- GCHandleCookieTable.cs
- ResourceBinder.cs
- ThicknessAnimation.cs
- DataPagerFieldCollection.cs
- OpCopier.cs
- XmlDataLoader.cs
- Panel.cs
- SortedList.cs
- HandlerBase.cs
- ChannelManagerBase.cs
- WeakReferenceKey.cs
- WindowsGraphics.cs
- DataGridParentRows.cs
- SchemaObjectWriter.cs
- SecurityRuntime.cs
- ClientTargetCollection.cs
- DropTarget.cs
- ToolbarAUtomationPeer.cs
- MimeTypeMapper.cs
- BindingMemberInfo.cs
- SendActivityEventArgs.cs
- URLString.cs
- SecureConversationSecurityTokenParameters.cs
- PeerNameResolver.cs
- LockedActivityGlyph.cs
- SqlDataSource.cs
- AssertSection.cs
- DependencyPropertyHelper.cs
- Line.cs
- DataGridColumnCollection.cs
- ISAPIRuntime.cs
- AttributeSetAction.cs
- tibetanshape.cs
- OracleConnectionFactory.cs
- DataSourceView.cs
- ExtensionQuery.cs
- StackBuilderSink.cs
- StructuralType.cs
- SapiRecognizer.cs
- CompositeControl.cs
- HTTPNotFoundHandler.cs
- CapabilitiesSection.cs
- ServiceAppDomainAssociationProvider.cs
- DataGridRow.cs
- XmlMessageFormatter.cs
- HttpBrowserCapabilitiesWrapper.cs
- COSERVERINFO.cs
- DefaultBinder.cs