BrowserClientGetHistogramsAsync Method |
Version 130.1.90
Get Chrome histograms.
Namespace: CefSharp.DevTools.BrowserAssembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.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 String (Optional)
- Requested substring in name. Only histograms which have query as asubstring in their name are extracted. An empty or absent query returnsall histograms.
- delta NullableBoolean (Optional)
- If true, retrieve delta since last delta call.
Return Value
TaskGetHistogramsResponsereturns System.Threading.Tasks.Task<GetHistogramsResponse>
See Also