I am following the web services guide (http://docs.xamarin.com/guides/cross-platform/application_fundamentals/web_services/). Everything works fine, except the ASYNC methods are missing from the proxy!
- I have added a .wsdl file to my project, and added a Web Reference using that file as the web service definition.
- Xamarin studio has created a web service proxy. For every Get____ method in my web service, the proxy contains a BeginGet____ and an EndGet____ method. BUT it did NOT generate a Get_______Async method, nor did it generate a Get_______Complete event.
I am using the free version of Xamarin Studio. Can anyone tell me why the Async functionality was not generated?