CacheStorageClient.RequestEntriesAsync Method |
Version 118.6.80
Requests data from cache.
Namespace:
CefSharp.DevTools.CacheStorage
Assembly:
CefSharp.Core (in CefSharp.Core.dll) Version: 118.6.80.0
Syntaxpublic 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
- 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