我正在尝试从异步方法返回XmlDocument。
但它不断返回
<TaskOfTupleOfXmlDocument xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://tempuri.org/"/>
请问有人可以帮忙吗?
===
public async Task<XmlDocument> DoRenewal(string keyPass, long trasaction_Pid)
{
XmlDocument ret = new XmlDocument();
..
..
..`enter code here`
return await Task.FromResult(ret);
}
===