Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / UIAutomation / 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 : BrendanM 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. //---------------------------------------------------------------------------- // //// 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 : BrendanM 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
- FixedTextBuilder.cs
- SimpleBitVector32.cs
- QualifiedCellIdBoolean.cs
- FontDifferentiator.cs
- Visual.cs
- OptimizerPatterns.cs
- DataGridViewBindingCompleteEventArgs.cs
- DispatchWrapper.cs
- IOThreadScheduler.cs
- DispatcherHookEventArgs.cs
- HostingEnvironmentWrapper.cs
- NullableFloatSumAggregationOperator.cs
- StreamResourceInfo.cs
- HyperLink.cs
- ToolStripDropDownItemDesigner.cs
- BitmapSource.cs
- ArgumentNullException.cs
- ComAdminInterfaces.cs
- CollectionBase.cs
- SoapAttributeOverrides.cs
- PhysicalFontFamily.cs
- PageThemeCodeDomTreeGenerator.cs
- ActionFrame.cs
- ContextInformation.cs
- BitmapEffectrendercontext.cs
- ComponentResourceManager.cs
- DictionaryManager.cs
- AnimationLayer.cs
- ThumbAutomationPeer.cs
- ImageCodecInfo.cs
- RenamedEventArgs.cs
- LogWriteRestartAreaState.cs
- IndexerNameAttribute.cs
- AnnotationMap.cs
- WebMessageEncodingElement.cs
- CompositeControl.cs
- NonVisualControlAttribute.cs
- SpellerInterop.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- _UriTypeConverter.cs
- MouseOverProperty.cs
- ScaleTransform3D.cs
- _ChunkParse.cs
- ResourceWriter.cs
- NullToBooleanConverter.cs
- HtmlTableRowCollection.cs
- XmlPropertyBag.cs
- BitmapSizeOptions.cs
- ServicePoint.cs
- OrthographicCamera.cs
- HttpValueCollection.cs
- AddressAccessDeniedException.cs
- DashStyle.cs
- BaseParagraph.cs
- PropertyConverter.cs
- CfgSemanticTag.cs
- RecordBuilder.cs
- ScriptIgnoreAttribute.cs
- MemberJoinTreeNode.cs
- ObjectToIdCache.cs
- EntityWithChangeTrackerStrategy.cs
- ErrorFormatterPage.cs
- IRCollection.cs
- MenuItemStyle.cs
- GradientBrush.cs
- Image.cs
- GraphicsState.cs
- DoubleStorage.cs
- DetailsViewPagerRow.cs
- OleDbConnection.cs
- Convert.cs
- TemplateXamlTreeBuilder.cs
- AnchoredBlock.cs
- SrgsSubset.cs
- HMACSHA1.cs
- NonBatchDirectoryCompiler.cs
- CipherData.cs
- ApplicationServiceHelper.cs
- XmlSequenceWriter.cs
- ActivityScheduledRecord.cs
- JsonFormatGeneratorStatics.cs
- AppDomainProtocolHandler.cs
- TriggerBase.cs
- MbpInfo.cs
- DoubleAnimation.cs
- SqlNodeAnnotations.cs
- SqlDataSourceFilteringEventArgs.cs
- HashJoinQueryOperatorEnumerator.cs
- ProviderException.cs
- SoapFormatterSinks.cs
- StreamUpgradeInitiator.cs
- WbemProvider.cs
- ButtonFieldBase.cs
- ShapingWorkspace.cs
- TraceHandler.cs
- TemplateBuilder.cs
- WebBrowserEvent.cs
- WebPartAuthorizationEventArgs.cs
- DomNameTable.cs
- WindowsPrincipal.cs