BrowserClientGetHistogramsAsync Method |
Version 109.1.110
Get Chrome histograms.
Namespace:
CefSharp.DevTools.Browser
Assembly:
CefSharp (in CefSharp.dll) Version: 109.1.110.0 (109.1.110.0)
Syntax public Task<GetHistogramsResponse> GetHistogramsAsync(
string query = null,
bool? delta = null
)
public:
Task<GetHistogramsResponse^>^ GetHistogramsAsync(
String^ query = nullptr,
Nullable<bool> delta = nullptr
)
Parameters
- query (Optional)
- Type: SystemString
Requested substring in name. Only histograms which have query as asubstring in their name are extracted. An empty or absent query returnsall histograms. - delta (Optional)
- Type: SystemNullableBoolean
If true, retrieve delta since last call.
Return Value
Type:
TaskGetHistogramsResponsereturns System.Threading.Tasks.Task<GetHistogramsResponse>
See Also