gpt4 book ai didi

c# - Web 服务中的通用类型 WebMethod

转载 作者:行者123 更新时间:2023-11-30 23:24:09 26 4
gpt4 key购买 nike

我需要编写一个通用类型的 web 方法,因为我将返回字符串或 XmlDocument。这是我的代码;

[WebMethod]
public T test<T>()
{

var type = Context.Request.QueryString["type"];

if (type == "json")
{
string result = "";
return result;
}
else
{
XmlDocument result = new XmlDocument();
return result;
}

}

错误是:

cannot convert string to T or XmlDocument to T.

这里的错误是什么?

最佳答案

您不能在网络服务中使用泛型方法

关于c# - Web 服务中的通用类型 WebMethod,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37962722/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com