Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / AccessibleTech / longhorn / Automation / UIAutomationClient / MS / Internal / Automation / EventListener.cs / 1 / EventListener.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: // EventListener internal class holds the event data for both client and server sides // // History: // 06/17/2003 : [....] Ported to WCP // //--------------------------------------------------------------------------- using System; using System.Windows.Automation; namespace MS.Internal.Automation { // internal class holds the event data for both client and server sides internal class EventListener { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors // full ctor internal EventListener( AutomationEvent eventId, TreeScope scope, AutomationProperty [] properties, UiaCoreApi.UiaCacheRequest cacheRequest ) { _eventId = eventId; _scope = scope; if (properties != null) _properties = (AutomationProperty[])properties.Clone(); else _properties = null; _cacheRequest = cacheRequest; } #endregion Constructors //------------------------------------------------------ // // Internal Properties // //----------------------------------------------------- #region Internal Properties // returns the id of the event this listener represents. internal AutomationEvent EventId { get { return _eventId; } } // returns the array of properties being listened to for property changed events. internal AutomationProperty [] Properties { get { return _properties; } } // return scopt of this event internal TreeScope TreeScope { get { return _scope; } } // returns the list of properties, patterns, etc that we need to prefetch internal UiaCoreApi.UiaCacheRequest CacheRequest { get { return _cacheRequest; } } #endregion Internal Properties //------------------------------------------------------ // // Private Fields // //------------------------------------------------------ #region Private Fields private AutomationEvent _eventId; // the event this listener represents private TreeScope _scope; // fire events based on this scope private AutomationProperty [] _properties; // for property change, indicates the properties we're listening for private UiaCoreApi.UiaCacheRequest _cacheRequest; // properties etc to prefetch #endregion Private Fields } } // 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
- HtmlElementCollection.cs
- StrokeNodeOperations.cs
- QuestionEventArgs.cs
- StreamReader.cs
- DataGrid.cs
- BrowserCapabilitiesFactory.cs
- AudioFormatConverter.cs
- TextHidden.cs
- ObjectAnimationUsingKeyFrames.cs
- CurrentTimeZone.cs
- Highlights.cs
- x509store.cs
- ComboBoxAutomationPeer.cs
- StorageEntityContainerMapping.cs
- ObjectDataSource.cs
- Page.cs
- TextBoxLine.cs
- SharedUtils.cs
- Propagator.ExtentPlaceholderCreator.cs
- MenuScrollingVisibilityConverter.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- HandlerBase.cs
- ApplicationServiceHelper.cs
- SizeConverter.cs
- CollectionChangeEventArgs.cs
- MailDefinition.cs
- FormViewInsertedEventArgs.cs
- Baml2006SchemaContext.cs
- _NestedSingleAsyncResult.cs
- securestring.cs
- UIAgentAsyncParams.cs
- XmlHierarchyData.cs
- StorageFunctionMapping.cs
- ApplicationException.cs
- LambdaCompiler.Address.cs
- BaseTemplateCodeDomTreeGenerator.cs
- ArrayElementGridEntry.cs
- MruCache.cs
- ScrollEventArgs.cs
- IdentityHolder.cs
- WSSecurityTokenSerializer.cs
- ZipIOLocalFileHeader.cs
- RectValueSerializer.cs
- DropDownList.cs
- NamespaceCollection.cs
- Error.cs
- ExpressionBuilder.cs
- UInt32Converter.cs
- TitleStyle.cs
- CollectionContainer.cs
- ExtensibleClassFactory.cs
- PersonalizationStateInfo.cs
- TextSelectionProcessor.cs
- QueryContinueDragEventArgs.cs
- _ProxyChain.cs
- PenThreadWorker.cs
- SingleConverter.cs
- AppSettingsSection.cs
- FileClassifier.cs
- Socket.cs
- CssStyleCollection.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- IntSecurity.cs
- OdbcEnvironmentHandle.cs
- XamlGridLengthSerializer.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- WebColorConverter.cs
- DrawToolTipEventArgs.cs
- PauseStoryboard.cs
- LoginCancelEventArgs.cs
- DictionaryBase.cs
- SystemNetworkInterface.cs
- SqlOuterApplyReducer.cs
- UInt16.cs
- MultipleViewPattern.cs
- PageParser.cs
- ByteStorage.cs
- PrintDialog.cs
- SoapFormatterSinks.cs
- WinFormsSpinner.cs
- PageVisual.cs
- ICspAsymmetricAlgorithm.cs
- ResourceDictionary.cs
- InputElement.cs
- DefaultSection.cs
- ClipboardProcessor.cs
- IncrementalReadDecoders.cs
- ArrangedElement.cs
- ListViewUpdatedEventArgs.cs
- LineGeometry.cs
- XmlValidatingReader.cs
- XmlLinkedNode.cs
- RangeExpression.cs
- StrokeDescriptor.cs
- CodeTypeMemberCollection.cs
- VectorCollectionValueSerializer.cs
- ThreadPool.cs
- CompatibleComparer.cs
- OpenTypeCommon.cs
- WindowsIdentity.cs