【发布时间】:2015-07-16 12:27:56
【问题描述】:
我正在使用 wcf 来执行插入数据的任务。我正在使用 wcf void 函数之一来插入用户数据
AceVqbzServiceClient aceVqbzClientService = new AceVqbzServiceClient();
aceVqbzClientService.OpenAsync();
IAceVqbzService aceVqbzTypeService = aceVqbzClientService as IAceVqbzService;
Task.Factory.FromAsync(
aceVqbzTypeService.BeginSaveUserOrganizationLinking,
aceVqbzTypeService.EndSaveUserOrganizationLinking,
objUser_OrganizationDetail,
TaskCreationOptions.None);
aceVqbzClientService.CloseAsync();
这是函数
当我使用时,功能没有任何问题,但数据没有通过它插入。 请给我解决方案,以便我可以实现这个
【问题讨论】:
-
@HenkHolterman 比如?
标签: c# android-asynctask xamarin async-await