Skip to content

Instantly share code, notes, and snippets.

@WildGenie
Created May 3, 2017 03:03
Show Gist options
  • Save WildGenie/e86b784827f92db303611b5ee7dad094 to your computer and use it in GitHub Desktop.
Save WildGenie/e86b784827f92db303611b5ee7dad094 to your computer and use it in GitHub Desktop.
public void LoadCustomRequestExample()
{
var frame = WebBrowser.GetMainFrame();
//Create a new request knowing we'd like to use PostData
var request = frame.CreateRequest(initializePostData:true);
request.Method = "POST";
request.Url = "custom://cefsharp/PostDataTest.html";
request.PostData.AddData("test=123&data=456");
frame.LoadRequest(request);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment