Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. var webView = WebCore.CreateWebView(1920, 1080);
  2. webView.Source = new Uri("http://google.com");
  3. while (webView.IsLoading)
  4. {
  5. WebCore.Update();
  6. }
  7. Console.WriteLine(webView.HTML);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement