6 instantiations of UiaCacheResponse
UIAutomationClient (6)
MS\Internal\Automation\EventListenerClientSide.cs (1)
75
UiaCoreApi.UiaCacheResponse cacheResponse = new UiaCoreApi.
UiaCacheResponse
(requestedData, treeStructure, _eventListener.CacheRequest);
MS\Internal\Automation\UiaCoreApi.cs (5)
370
return new
UiaCacheResponse
(requestedData, treeStructure, request);
382
return new
UiaCacheResponse
(requestedData, treeStructure, request);
394
return new
UiaCacheResponse
(requestedData, treeStructure, request);
436
return new
UiaCacheResponse
(requestedData, treeStructure, request);
477
responses[i] = new
UiaCacheResponse
(elementData, treeStructures[i], request);
23 references to UiaCacheResponse
UIAutomationClient (23)
MS\Internal\Automation\CacheHelper.cs (1)
71
UiaCoreApi.
UiaCacheResponse
response)
MS\Internal\Automation\CalloutQueueItem.cs (2)
30
internal CalloutQueueItem(Delegate clientCallback, UiaCoreApi.
UiaCacheResponse
cacheResponse, AutomationEventArgs e, UiaCoreApi.UiaCacheRequest cacheRequest)
67
internal UiaCoreApi.
UiaCacheResponse
_cacheResponse; // prefetched data (possibly including the element and properties/patterns)
MS\Internal\Automation\ClientSideQueueItem.cs (1)
58
UiaCoreApi.
UiaCacheResponse
response = UiaCoreApi.UiaGetUpdatedCache(_srcEl.RawNode, _request, UiaCoreApi.NormalizeState.View, null);
MS\Internal\Automation\EventListenerClientSide.cs (1)
75
UiaCoreApi.
UiaCacheResponse
cacheResponse = new UiaCoreApi.UiaCacheResponse(requestedData, treeStructure, _eventListener.CacheRequest);
MS\Internal\Automation\UiaCoreApi.cs (8)
352
internal static
UiaCacheResponse
UiaNodeFromPoint(double x, double y, UiaCacheRequest request)
373
internal static
UiaCacheResponse
UiaNodeFromFocus(UiaCacheRequest request)
385
internal static
UiaCacheResponse
UiaGetUpdatedCache(SafeNodeHandle hnode, UiaCacheRequest request, NormalizeState normalize, Condition customCondition)
427
internal static
UiaCacheResponse
UiaNavigate(SafeNodeHandle hnode, NavigateDirection direction, Condition condition, UiaCacheRequest request)
439
internal static
UiaCacheResponse
[] UiaFind(SafeNodeHandle hnode, UiaFindParams findParams, Condition findCondition, UiaCacheRequest request)
457
return new
UiaCacheResponse
[] {}; // Return empty cacheresponse, not null.
463
UiaCacheResponse
[] responses = new
UiaCacheResponse
[treeStructures.Length];
System\Windows\Automation\AutomationElement.cs (10)
444
UiaCoreApi.
UiaCacheResponse
response = UiaCoreApi.UiaGetUpdatedCache(hnode, cacheRequest, UiaCoreApi.NormalizeState.None, null);
747
UiaCoreApi.
UiaCacheResponse
response = UiaCoreApi.UiaGetUpdatedCache(_hnode, cacheRequest, UiaCoreApi.NormalizeState.None, null);
762
UiaCoreApi.
UiaCacheResponse
[] responses = Find(scope, condition, CacheRequest.CurrentUiaCacheRequest, true, null);
786
UiaCoreApi.
UiaCacheResponse
[] responses = Find(scope, condition, request, false, null);
959
UiaCoreApi.
UiaCacheResponse
response = UiaCoreApi.UiaGetUpdatedCache(hnode, cacheRequest, UiaCoreApi.NormalizeState.None, null);
1139
UiaCoreApi.
UiaCacheResponse
response = UiaCoreApi.UiaNavigate(_hnode, direction, condition, cacheRequest);
1154
UiaCoreApi.
UiaCacheResponse
response = UiaCoreApi.UiaGetUpdatedCache(_hnode, cacheRequest, UiaCoreApi.NormalizeState.Custom, condition);
1289
UiaCoreApi.
UiaCacheResponse
response;
1300
private UiaCoreApi.
UiaCacheResponse
[] Find(TreeScope scope, Condition condition, UiaCoreApi.UiaCacheRequest request, bool findFirst, BackgroundWorker worker)
1328
UiaCoreApi.
UiaCacheResponse
[] retVal = UiaCoreApi.UiaFind(_hnode, findParams, condition, request);