Пожалуйста, помогите мне. Как вызвать функцию ниже со страницы xaml.cs? В проект добавлен сервис .asmx,
[enter image description here][1]
public System.Threading.Tasks.Task<GetuserService.GetUserAuthentiResponse> GetUserAuthentiAsync(string userid, string password)
{
GetuserService.GetUserAuthentiRequest inValue = new GetuserService.GetUserAuthentiRequest();
inValue.Body = new GetuserService.GetUserAuthentiRequestBody();
inValue.Body.userid = userid;
inValue.Body.password = password;
return ((GetuserService.WebServiceDNNUserAuth_4AndroidSoap)(this)).GetUserAuthentiAsync(inValue);
}