NetworkClientLoadNetworkResourceAsync Method (String, String, LoadNetworkResourceOptions) | 
Version 106.0.290 
            Fetches the resource and returns the content.
            
 
    Namespace: 
   CefSharp.DevTools.Network
    Assembly:
   CefSharp (in CefSharp.dll) Version: 106.0.290.0 (106.0.290.0)
Syntaxpublic Task<LoadNetworkResourceResponse> LoadNetworkResourceAsync(
	string frameId,
	string url,
	LoadNetworkResourceOptions options
)
public:
Task<LoadNetworkResourceResponse^>^ LoadNetworkResourceAsync(
	String^ frameId, 
	String^ url, 
	LoadNetworkResourceOptions^ options
)
Parameters
- frameId
 - Type: SystemString
Frame id to get the resource for. Mandatory for frame targets, and should be omitted for worker targets. - url
 - Type: SystemString
URL of the resource to get content for. - options
 - Type: CefSharp.DevTools.NetworkLoadNetworkResourceOptions
Options for the request. 
Return Value
Type: 
TaskLoadNetworkResourceResponsereturns System.Threading.Tasks.Task<LoadNetworkResourceResponse>
Remarks
            This overload of LoadNetworkResourceAsync exists to avoid a breaking change as optional params are now always at the end
            where previously they weren't marked as optional when at the beginning.
            
See Also