CacheStorageClientRequestEntriesAsync Method |
Version 130.1.90
Requests data from cache.
Namespace: CefSharp.DevTools.CacheStorageAssembly: 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
)
public:
Task<RequestEntriesResponse^>^ RequestEntriesAsync(
String^ cacheId,
Nullable<int> skipCount = nullptr,
Nullable<int> pageSize = nullptr,
String^ pathFilter = nullptr
)
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
TaskRequestEntriesResponsereturns System.Threading.Tasks.Task<RequestEntriesResponse>
See Also