CSSClientTrackComputedStyleUpdatesAsync Method |
Version 130.1.90
Starts tracking the given computed styles for updates. The specified array of properties
replaces the one previously specified. Pass empty array to disable tracking.
Use takeComputedStyleUpdates to retrieve the list of nodes that had properties modified.
The changes to computed style properties are only tracked for nodes pushed to the front-end
by the DOM agent. If no changes to the tracked properties occur after the node has been pushed
to the front-end, no updates will be issued for the node.
Namespace: CefSharp.DevTools.CSSAssembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.0
Syntax public Task<DevToolsMethodResponse> TrackComputedStyleUpdatesAsync(
IList<CSSComputedStyleProperty> propertiesToTrack
)
public:
Task<DevToolsMethodResponse^>^ TrackComputedStyleUpdatesAsync(
IList<CSSComputedStyleProperty^>^ propertiesToTrack
)
Parameters
- propertiesToTrack IListCSSComputedStyleProperty
- propertiesToTrack
Return Value
TaskDevToolsMethodResponsereturns System.Threading.Tasks.Task<DevToolsMethodResponse>
See Also