| WebBrowserExtensionsExDownloadUrlAsync Method  | 
Version 107.1.120 
            Downloads the specified url as a [!:byte[]].
            Makes a GET Request.
            
 
    Namespace: 
   CefSharp
    Assembly:
   CefSharp.Core (in CefSharp.Core.dll) Version: 107.1.120.0
 Syntax
Syntaxpublic static Task<byte[]> DownloadUrlAsync(
	this IFrame frame,
	string url
)
public:
[ExtensionAttribute]
static Task<array<unsigned char>^>^ DownloadUrlAsync(
	IFrame^ frame, 
	String^ url
)
Parameters
- frame
- Type: CefSharpIFrame
 valid frame
- url
- Type: SystemString
 url to download
Return Value
Type: 
TaskByteA task that can be awaited to get the 
[!:byte[]] representing the Url
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type 
IFrame. When you use instance method syntax to call this method, omit the first parameter. For more information, see 
Extension Methods (Visual Basic) or 
Extension Methods (C# Programming Guide).
 See Also
See Also