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
- DataGridRowDetailsEventArgs.cs
- SqlInternalConnection.cs
- HttpHandlerActionCollection.cs
- SiteMembershipCondition.cs
- DataSourceSelectArguments.cs
- DisplayMemberTemplateSelector.cs
- DbDataReader.cs
- DeflateStreamAsyncResult.cs
- TransformGroup.cs
- JapaneseLunisolarCalendar.cs
- QuestionEventArgs.cs
- XmlUtf8RawTextWriter.cs
- ListViewGroup.cs
- BaseParaClient.cs
- NamespaceEmitter.cs
- MouseOverProperty.cs
- RowSpanVector.cs
- LayoutTable.cs
- UnauthorizedAccessException.cs
- TraceEventCache.cs
- NamedElement.cs
- XmlSchemaComplexType.cs
- Hashtable.cs
- RIPEMD160Managed.cs
- UInt64Storage.cs
- ModelUIElement3D.cs
- XpsSerializationException.cs
- SEHException.cs
- SID.cs
- BaseInfoTable.cs
- sqlmetadatafactory.cs
- RenderCapability.cs
- ReferenceSchema.cs
- wgx_exports.cs
- SessionStateContainer.cs
- DictionaryBase.cs
- OledbConnectionStringbuilder.cs
- DecimalStorage.cs
- UriScheme.cs
- NavigationWindow.cs
- Subtree.cs
- AvTraceFormat.cs
- SetterBaseCollection.cs
- MenuAutomationPeer.cs
- FileCodeGroup.cs
- ExpressionBuilderCollection.cs
- JoinSymbol.cs
- ThemeInfoAttribute.cs
- Console.cs
- DataGridViewRow.cs
- RoleService.cs
- NativeObjectSecurity.cs
- DateTimeOffsetConverter.cs
- SafeIUnknown.cs
- IPEndPointCollection.cs
- ButtonChrome.cs
- CodeMethodReturnStatement.cs
- PropertyGridEditorPart.cs
- SqlConnectionPoolProviderInfo.cs
- shaper.cs
- KeyNotFoundException.cs
- ActivityAction.cs
- XmlQualifiedName.cs
- FtpWebResponse.cs
- PopupControlService.cs
- PreviewPageInfo.cs
- DoubleCollection.cs
- RootProfilePropertySettingsCollection.cs
- SlipBehavior.cs
- HtmlInputCheckBox.cs
- EntityParameter.cs
- TraceSource.cs
- CompilationUtil.cs
- oledbconnectionstring.cs
- DeviceContext.cs
- DataGridViewRowHeaderCell.cs
- AxHost.cs
- Keyboard.cs
- GridViewColumnHeaderAutomationPeer.cs
- DataGridBoolColumn.cs
- ReflectionPermission.cs
- InternalEnumValidator.cs
- CutCopyPasteHelper.cs
- XmlCompatibilityReader.cs
- CatalogZoneAutoFormat.cs
- StaticContext.cs
- GridViewRowEventArgs.cs
- NoneExcludedImageIndexConverter.cs
- SystemIPv4InterfaceProperties.cs
- OrthographicCamera.cs
- GlyphRunDrawing.cs
- FileIOPermission.cs
- SiteMapNodeItem.cs
- LinkedResource.cs
- ContentPlaceHolder.cs
- OleDbParameterCollection.cs
- StickyNoteAnnotations.cs
- DataRowChangeEvent.cs
- WebPartCatalogAddVerb.cs
- SelectedDatesCollection.cs