Click or drag to resize
WebBrowserExtensionsLoadUrlWithPostData Method
Version 63.0.0
Loads Creates a new instance of IRequest with the specified Url and Method = POST

Namespace: CefSharp
Assembly: CefSharp (in CefSharp.dll) Version: 63.0.0.0 (63.0.0.0)
Syntax
public static void LoadUrlWithPostData(
	this IWebBrowser browser,
	string url,
	byte[] postDataBytes,
	string contentType = null
)

Parameters

browser
Type: CefSharpIWebBrowser

[Missing <param name="browser"/> documentation for "M:CefSharp.WebBrowserExtensions.LoadUrlWithPostData(CefSharp.IWebBrowser,System.String,System.Byte[],System.String)"]

url
Type: SystemString

[Missing <param name="url"/> documentation for "M:CefSharp.WebBrowserExtensions.LoadUrlWithPostData(CefSharp.IWebBrowser,System.String,System.Byte[],System.String)"]

postDataBytes
Type: SystemByte

[Missing <param name="postDataBytes"/> documentation for "M:CefSharp.WebBrowserExtensions.LoadUrlWithPostData(CefSharp.IWebBrowser,System.String,System.Byte[],System.String)"]

contentType (Optional)
Type: SystemString

[Missing <param name="contentType"/> documentation for "M:CefSharp.WebBrowserExtensions.LoadUrlWithPostData(CefSharp.IWebBrowser,System.String,System.Byte[],System.String)"]

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IWebBrowser. 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).
Remarks
This is an extension method
See Also