Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / UIAutomation / UIAutomationClient / MS / Internal / Automation / CalloutQueueItem.cs / 1305600 / CalloutQueueItem.cs
//----------------------------------------------------------------------------
//
//
// Copyright (C) Microsoft Corporation. All rights reserved.
//
//
//
// Description: Class to create a queue on its own thread.
//
// History:
// 06/17/2003 : BrendanM Ported to WCP
//
//---------------------------------------------------------------------------
using System.Windows.Automation;
using System.Windows.Automation.Provider;
using System;
using System.Collections;
using System.ComponentModel;
using MS.Internal.Automation;
using MS.Win32;
namespace MS.Internal.Automation
{
// Worker class used to queue callbacks that came from the PAW server. Used by
// ClientEventManager in its event handler that recieves events from the server.
// These events are queued in order to get them off the servers UI thread.
internal class CalloutQueueItem : QueueItem
{
//-----------------------------------------------------
//
// Constructors
//
//-----------------------------------------------------
#region Constructors
internal CalloutQueueItem(Delegate clientCallback, UiaCoreApi.UiaCacheResponse cacheResponse, AutomationEventArgs e, UiaCoreApi.UiaCacheRequest cacheRequest)
{
_clientCallback = clientCallback;
_cacheResponse = cacheResponse;
_e = e;
_cacheRequest = cacheRequest;
}
#endregion Constructors
//------------------------------------------------------
//
// Internal Methods
//
//-----------------------------------------------------
#region Internal Methods
internal override void Process()
{
AutomationElement el = CacheHelper.BuildAutomationElementsFromResponse(_cacheRequest, _cacheResponse);
InvokeHandlers.InvokeClientHandler(_clientCallback, el, _e);
}
#endregion Internal Methods
//------------------------------------------------------
//
// Private Fields
//
//------------------------------------------------------
#region Private Fields
internal Delegate _clientCallback; // the client's callback delegate
internal UiaCoreApi.UiaCacheResponse _cacheResponse; // prefetched data (possibly including the element and properties/patterns)
internal UiaCoreApi.UiaCacheRequest _cacheRequest; // list of items to prefetch (also used when deserializing prefetched data)
internal AutomationEventArgs _e; // the event args for the callback
#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
- CorruptingExceptionCommon.cs
- TreeNodeConverter.cs
- XmlDocument.cs
- TimeEnumHelper.cs
- LinkConverter.cs
- PointCollection.cs
- Rect3D.cs
- DesignerLoader.cs
- XmlNode.cs
- MatcherBuilder.cs
- FontWeights.cs
- keycontainerpermission.cs
- QilNode.cs
- NotifyInputEventArgs.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- DialogDivider.cs
- BrowserDefinitionCollection.cs
- HtmlElementCollection.cs
- HttpRawResponse.cs
- CreatingCookieEventArgs.cs
- ImageSource.cs
- HtmlImage.cs
- AggregateNode.cs
- SqlRowUpdatedEvent.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- MissingMethodException.cs
- LessThan.cs
- XPathEmptyIterator.cs
- ListBox.cs
- DbInsertCommandTree.cs
- HostingMessageProperty.cs
- WebInvokeAttribute.cs
- ThrowHelper.cs
- ADMembershipProvider.cs
- ConnectionProviderAttribute.cs
- EntryWrittenEventArgs.cs
- WebBrowsableAttribute.cs
- ButtonBaseAdapter.cs
- ReadOnlyCollection.cs
- GridViewRowPresenter.cs
- DirtyTextRange.cs
- RayHitTestParameters.cs
- ToolStripItemGlyph.cs
- CodeAssignStatement.cs
- TrackingWorkflowEventArgs.cs
- DbProviderFactoriesConfigurationHandler.cs
- IPPacketInformation.cs
- wgx_exports.cs
- DateTimeHelper.cs
- FilteredAttributeCollection.cs
- InitiatorServiceModelSecurityTokenRequirement.cs
- dtdvalidator.cs
- WebPartsSection.cs
- GuidelineCollection.cs
- SQLDouble.cs
- RegionIterator.cs
- InstallerTypeAttribute.cs
- SqlCachedBuffer.cs
- ClientUtils.cs
- XmlStreamStore.cs
- LiteralControl.cs
- Trace.cs
- DataTableNewRowEvent.cs
- NamespaceList.cs
- UnionCqlBlock.cs
- PageParser.cs
- BCLDebug.cs
- FilterRepeater.cs
- Section.cs
- SHA256.cs
- PolyLineSegment.cs
- HttpBrowserCapabilitiesWrapper.cs
- DbConnectionPoolOptions.cs
- LongValidator.cs
- PointUtil.cs
- CharacterMetrics.cs
- RouteItem.cs
- XmlHelper.cs
- EqualityArray.cs
- MultiPartWriter.cs
- DrawListViewColumnHeaderEventArgs.cs
- AdapterDictionary.cs
- SystemUdpStatistics.cs
- XamlSerializerUtil.cs
- StringToken.cs
- ResizeGrip.cs
- EastAsianLunisolarCalendar.cs
- PageAdapter.cs
- ChangeConflicts.cs
- ImageAnimator.cs
- GridViewPageEventArgs.cs
- ImmutableObjectAttribute.cs
- DataTransferEventArgs.cs
- ParserContext.cs
- QuadTree.cs
- ToolStripItemClickedEventArgs.cs
- XPathNodePointer.cs
- DateTimeFormatInfoScanner.cs
- ListView.cs
- XmlWriter.cs