CSSClientTrackComputedStyleUpdatesAsync Method |
Version 87.1.132
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.CSS
Assembly:
CefSharp (in CefSharp.dll) Version: 87.1.132.0 (87.1.132.0)
Syntax public Task<DevToolsMethodResponse> TrackComputedStyleUpdatesAsync(
IList<CSSComputedStyleProperty> propertiesToTrack
)
public:
Task<DevToolsMethodResponse^>^ TrackComputedStyleUpdatesAsync(
IList<CSSComputedStyleProperty^>^ propertiesToTrack
)
Parameters
- propertiesToTrack
- Type: System.Collections.GenericIListCSSComputedStyleProperty
propertiesToTrack
Return Value
Type:
TaskDevToolsMethodResponsereturns System.Threading.Tasks.Task<DevToolsMethodResponse>
See Also