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
- PropertyTabChangedEvent.cs
- ThicknessAnimationUsingKeyFrames.cs
- HMACSHA512.cs
- ApplicationActivator.cs
- HttpTransportBindingElement.cs
- pingexception.cs
- EarlyBoundInfo.cs
- FileUtil.cs
- Random.cs
- SafeArrayTypeMismatchException.cs
- QilSortKey.cs
- InfoCardAsymmetricCrypto.cs
- OracleParameterCollection.cs
- SerializerProvider.cs
- LassoHelper.cs
- NameTable.cs
- PagedDataSource.cs
- RuntimeCompatibilityAttribute.cs
- AdornerLayer.cs
- TreeIterator.cs
- DefaultCommandExtensionCallback.cs
- StyleXamlTreeBuilder.cs
- ThreadStartException.cs
- EditorPartChrome.cs
- ObjectDisposedException.cs
- SkinBuilder.cs
- Grant.cs
- AppDomainEvidenceFactory.cs
- WebPartZoneCollection.cs
- TextWriter.cs
- TemplateNameScope.cs
- RoleServiceManager.cs
- SHA256Managed.cs
- EntityTransaction.cs
- OrderedHashRepartitionEnumerator.cs
- ResetableIterator.cs
- InstanceStore.cs
- BaseCodePageEncoding.cs
- GeneralTransform3DGroup.cs
- ObjectItemAssemblyLoader.cs
- BamlBinaryReader.cs
- UrlMapping.cs
- InfoCardSymmetricCrypto.cs
- StyleHelper.cs
- DbUpdateCommandTree.cs
- UpdateCommand.cs
- HtmlButton.cs
- QueryCreatedEventArgs.cs
- ClientSideProviderDescription.cs
- GifBitmapEncoder.cs
- TakeOrSkipQueryOperator.cs
- FlowDocumentScrollViewer.cs
- SplineQuaternionKeyFrame.cs
- UpdateDelegates.Generated.cs
- ForeignConstraint.cs
- Converter.cs
- ApplyTemplatesAction.cs
- RectIndependentAnimationStorage.cs
- TemplateField.cs
- TextStore.cs
- StyleXamlParser.cs
- CompoundFileReference.cs
- VarInfo.cs
- JsonMessageEncoderFactory.cs
- TaskbarItemInfo.cs
- WebPartMovingEventArgs.cs
- CheckPair.cs
- GridViewDeletedEventArgs.cs
- _SslState.cs
- ScalarConstant.cs
- Missing.cs
- AnnotationStore.cs
- InputBinder.cs
- DESCryptoServiceProvider.cs
- SecurityException.cs
- _ListenerAsyncResult.cs
- MultiBinding.cs
- ListBase.cs
- BufferedGraphicsManager.cs
- DataGridViewRowEventArgs.cs
- AuthenticationConfig.cs
- StandardBindingElement.cs
- XmlDataContract.cs
- LinkUtilities.cs
- PermissionAttributes.cs
- UnsafeNativeMethods.cs
- Base64Encoder.cs
- XPathItem.cs
- OleDbMetaDataFactory.cs
- TraceContextEventArgs.cs
- DbCommandDefinition.cs
- baseaxisquery.cs
- SchemaEntity.cs
- DesignerForm.cs
- ContainerActivationHelper.cs
- BindingContext.cs
- PeerCollaboration.cs
- X509AsymmetricSecurityKey.cs
- JsonCollectionDataContract.cs
- RoleGroupCollection.cs