从XAML页面调用Asmx

请帮助我。 如何从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);
    }
wjli44 回答:从XAML页面调用Asmx

暂时没有好的解决方案,如果你有好的解决方案,请发邮件至:iooj@foxmail.com
本文链接:https://www.f2er.com/2577173.html

大家都在问