This question is locked. New answers and comments are not allowed.
private void onWebPageReceived(byte[] bytes)
{ var provider = new HtmlFormatProvider(); RadDocument doc = provider.Import(bytes);}public static byte[] GetBytes(string url){ WebClient wc = new WebClient(); byte[] result = wc.DownloadData(url); return result;}Ideas?