Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / MS / Internal / Data / XmlNodeChangedEventManager.cs / 1 / XmlNodeChangedEventManager.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: Manager for the XmlNodeChanged event in the "weak event listener" // pattern. See WeakEventTable.cs for an overview. // //--------------------------------------------------------------------------- using System; using System.Xml; using System.Windows; // WeakEventManager namespace MS.Internal.Data { ////// Manager for the XmlDocument.XmlNodeChanged event. /// internal class XmlNodeChangedEventManager : WeakEventManager { #region Constructors // // Constructors // private XmlNodeChangedEventManager() { } #endregion Constructors #region Public Methods // // Public Methods // ////// Add a listener to the given source's event. /// public static void AddListener(XmlDocument source, IWeakEventListener listener) { CurrentManager.ProtectedAddListener(source, listener); } ////// Remove a listener to the given source's event. /// public static void RemoveListener(XmlDocument source, IWeakEventListener listener) { CurrentManager.ProtectedRemoveListener(source, listener); } #endregion Public Methods #region Protected Methods // // Protected Methods // ////// Listen to the given source for the event. /// protected override void StartListening(object source) { XmlNodeChangedEventHandler handler = new XmlNodeChangedEventHandler(OnXmlNodeChanged); XmlDocument doc = (XmlDocument)source; doc.NodeInserted += handler; doc.NodeRemoved += handler; doc.NodeChanged += handler; } ////// Stop listening to the given source for the event. /// protected override void StopListening(object source) { XmlNodeChangedEventHandler handler = new XmlNodeChangedEventHandler(OnXmlNodeChanged); XmlDocument doc = (XmlDocument)source; doc.NodeInserted -= handler; doc.NodeRemoved -= handler; doc.NodeChanged -= handler; } #endregion Protected Methods #region Private Properties // // Private Properties // // get the event manager for the current thread private static XmlNodeChangedEventManager CurrentManager { get { Type managerType = typeof(XmlNodeChangedEventManager); XmlNodeChangedEventManager manager = (XmlNodeChangedEventManager)GetCurrentManager(managerType); // at first use, create and register a new manager if (manager == null) { manager = new XmlNodeChangedEventManager(); SetCurrentManager(managerType, manager); } return manager; } } #endregion Private Properties #region Private Methods // // Private Methods // // event handler for XmlNodeChanged event private void OnXmlNodeChanged(object sender, XmlNodeChangedEventArgs args) { DeliverEvent(sender, args); } #endregion Private Methods } } // 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
- HandleRef.cs
- HorizontalAlignConverter.cs
- IntranetCredentialPolicy.cs
- XmlSerializationGeneratedCode.cs
- WebPartManagerDesigner.cs
- XmlSerializerSection.cs
- BrowserCapabilitiesCodeGenerator.cs
- CollectionsUtil.cs
- Table.cs
- ObjectReaderCompiler.cs
- Rules.cs
- FramingEncoders.cs
- AttributeEmitter.cs
- ConfigurationValues.cs
- ConnectionStringsExpressionBuilder.cs
- CompositeScriptReference.cs
- TextServicesCompartmentContext.cs
- control.ime.cs
- SmiEventStream.cs
- ProtectedConfigurationSection.cs
- BaseCodeDomTreeGenerator.cs
- GridViewRow.cs
- StrokeNodeEnumerator.cs
- ReflectionHelper.cs
- ElementMarkupObject.cs
- LicenseProviderAttribute.cs
- EntitySetRetriever.cs
- PageAdapter.cs
- TextTreeUndoUnit.cs
- FileNotFoundException.cs
- ChannelTerminatedException.cs
- InternalRelationshipCollection.cs
- DesignSurfaceManager.cs
- CalendarDay.cs
- ContentPosition.cs
- SqlTriggerAttribute.cs
- ResourceProviderFactory.cs
- ClientEventManager.cs
- _AutoWebProxyScriptEngine.cs
- AutomationPropertyInfo.cs
- Command.cs
- RuleSetReference.cs
- HtmlElementCollection.cs
- ThicknessAnimationBase.cs
- PeerNameRegistration.cs
- XmlSchemaIdentityConstraint.cs
- EventLogPermissionEntryCollection.cs
- Cursors.cs
- CreateCardRequest.cs
- FillRuleValidation.cs
- HtmlButton.cs
- DocumentSequence.cs
- UserControlBuildProvider.cs
- ContractMapping.cs
- InputLanguageCollection.cs
- EUCJPEncoding.cs
- ManagementObjectSearcher.cs
- TextRange.cs
- ObjectDataSourceSelectingEventArgs.cs
- Int64AnimationUsingKeyFrames.cs
- WriteableOnDemandStream.cs
- HttpRequestCacheValidator.cs
- QuerySelectOp.cs
- NullExtension.cs
- Profiler.cs
- WebPartUtil.cs
- ExtendedPropertyInfo.cs
- ActionFrame.cs
- _TransmitFileOverlappedAsyncResult.cs
- ISAPIApplicationHost.cs
- PolyLineSegmentFigureLogic.cs
- MenuItem.cs
- InvalidProgramException.cs
- DataGridAddNewRow.cs
- DbDataSourceEnumerator.cs
- ModuleBuilderData.cs
- ImageMap.cs
- DockAndAnchorLayout.cs
- SchemaExporter.cs
- WCFBuildProvider.cs
- DbConnectionPoolIdentity.cs
- ExpressionBuilderCollection.cs
- SqlCacheDependencyDatabaseCollection.cs
- PerformanceCounter.cs
- Evidence.cs
- AssociationType.cs
- SkinIDTypeConverter.cs
- SharedStatics.cs
- DataConnectionHelper.cs
- PublishLicense.cs
- PropagatorResult.cs
- LeaseManager.cs
- GacUtil.cs
- ListViewItem.cs
- UrlAuthFailedErrorFormatter.cs
- CreateSequenceResponse.cs
- ThreadBehavior.cs
- DiscriminatorMap.cs
- RenderingBiasValidation.cs
- Variant.cs