Click or drag to resize

CacheStorageClientRequestEntriesAsync Method

Version 102.0.100
Requests data from cache.

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

Parameters

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

Return Value

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