I’m using VS2013 SP2 with XAMARIN integration. I tried to start a new C# DA PCL Project (7.0.75.1117) to an existing DA Server out of the box when i chagend to Profile 78 (from Profile 154)
I get errors in the DataModule.cs missing ThreadPool and WaitCallBack.
Do you support this Profile (and Profile 259 too) ?
This is the legacy of Silverlight support (IIRC portable profiles that include SL support don’t offer async/await support and thus apply limitations on the templates code).
We’ll provide you the template code update once it is ready (it can be applied without the need to re-install Data Abstract). As a temporary workaround you could just remove the failing to compile Login method and replace it with something like
public Task LoginExAsync(String loginString)
{
RemObjects.DataAbstract.Server.IBaseLoginService_Async lAsyncService
= (new RemObjects.DataAbstract.Server.BaseLoginService_AsyncProxy(this.fMessage, this.fClientChannel, “LoginService”));
return Task.Factory.FromAsync(lAsyncService.BeginLoginEx, lAsyncService.EndLoginEx, loginString, null);
}