Click or drag to resize

CacheStorageClient.RequestEntriesAsync Method

Version 108.4.130
Requests data from cache.

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

Parameters

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

Return Value

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