c# - Stopping a WebClient after usage in Windows Phone 8 -


I want to stop webmail after my use but I could not find any way to do this.

  Public Static Webclient WebClient = New WebClient ();    

You can use:

For example: var Client = new webmail (); String url = "http://example.com/parameter"; Client.BeginDownloadString (URI); client.CancelAsync ();

Comments

Popular posts from this blog

c# - Roxy file manager in MVC doesn't accept session path -

jsp - No mapping found for HTTP request with URI with annotation config Spring MVC and Jetty -

java - Ajax call to jsp and jsp redirecting to further jsp -