CacheStorageClientRequestEntriesAsync Method |
Version 88.2.90
Requests data from cache.
Namespace:
CefSharp.DevTools.CacheStorage
Assembly:
CefSharp (in CefSharp.dll) Version: 88.2.90.0 (88.2.90.0)
Syntax public Task<RequestEntriesResponse> RequestEntriesAsync(
string cacheId,
Nullable<int> skipCount = null,
Nullable<int> pageSize = null,
string pathFilter = null
)
public:
Task<RequestEntriesResponse^>^ RequestEntriesAsync(
String^ cacheId,
Nullable<int> skipCount = nullptr,
Nullable<int> pageSize = nullptr,
String^ pathFilter = nullptr
)
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:
TaskRequestEntriesResponsereturns System.Threading.Tasks.Task<RequestEntriesResponse>
See Also