I am developing a WP8 application. I created a web service on out-systems and then I am calling those web service methods in my app:
ServiceReference1.WebServiceClient ws = new WebServiceClient();
ws.FetchInboxAsync(EmailId);
Now what I want is 10 seconds timeout while trying to access the web service and retry 3 times before throwing an error but I am not sure how to achieve this.