I am using the Async CTP library for Windows Phone. Does anyone know how to cancel a pending webrequest?
Request = (HttpWebRequest)WebRequest.Create(url); Re
You could try calling Request.Abort().
Request.Abort()