Click or drag to resize

CacheStorageClientRequestEntriesAsync Method

Version 130.1.90
Requests data from cache.

Namespace: CefSharp.DevTools.CacheStorage
Assembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.0
Syntax
public Task<RequestEntriesResponse> RequestEntriesAsync(
	string cacheId,
	int? skipCount = null,
	int? pageSize = null,
	string pathFilter = null
)

Parameters

cacheId  String
ID of cache to get entries from.
skipCount  NullableInt32  (Optional)
Number of records to skip.
pageSize  NullableInt32  (Optional)
Number of records to fetch.
pathFilter  String  (Optional)
If present, only return the entries containing this substring in the path

Return Value

TaskRequestEntriesResponse
returns System.Threading.Tasks.Task<RequestEntriesResponse>
See Also