I just recently started using Mono for Android and I am trying to consume WCF services using SOAP. I’ve consumed some basic SOAP services using just Android, but I’m using Mono for Android now and I’m not exactly sure of the syntax for Asynctask. Does anyone know the proper syntax for Asynctask in Mono for Android.
Thanks
Documentation.
The syntax is similar to the java syntax.
AsyncTask<T1, T2, T3>whereT1is the parameters type,T2is the progress parameters type andT3is the result type, or justAsyncTask<Params, Porgress, Result>.