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

python - Writing Greek in matplotlib labels, titles -

c# - LINQ to Entities does not recognize the method 'Int32 IndexOf(System.String, System.StringComparison)' method -

Pygame memory leak with transform.flip -