NetworkClientLoadNetworkResourceAsync(String, LoadNetworkResourceOptions, String) Method |
Version 130.1.90
Fetches the resource and returns the content.
Namespace: CefSharp.DevTools.NetworkAssembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.0
Syntax public Task<LoadNetworkResourceResponse> LoadNetworkResourceAsync(
string url,
LoadNetworkResourceOptions options,
string frameId = null
)
public:
Task<LoadNetworkResourceResponse^>^ LoadNetworkResourceAsync(
String^ url,
LoadNetworkResourceOptions^ options,
String^ frameId = nullptr
)
Parameters
- url String
- URL of the resource to get content for.
- options LoadNetworkResourceOptions
- Options for the request.
- frameId String (Optional)
- Frame id to get the resource for. Mandatory for frame targets, andshould be omitted for worker targets.
Return Value
TaskLoadNetworkResourceResponsereturns System.Threading.Tasks.Task<LoadNetworkResourceResponse>
See Also