gpt4 book ai didi

.net - .NET WebMethods 中@WebParam 的等价物是什么?

转载 作者:行者123 更新时间:2023-12-04 05:06:49 25 4
gpt4 key购买 nike

我有一个像这样定义的 Java JWS WebService:

@WebService
public class Foo
{
@WebMethod
public int foo(@WebParam(name = "externalName") String internalName)
{
...
}
}

在 C# .NET 中的等价物似乎是
[WebService]
public class Foo : System.Web.Services.WebService
{
[WebMethod]
public int foo(/* ??? */ string internalName)
{
...
}
}
/* ??? */的地方应该放什么?我找不到这方面的文档。

最佳答案

我相信您可能正在寻找 [XmlElement] :

[WebMethod]
public int foo([XmlElement("externalName")] string internalName)
{
...
}

关于.net - .NET WebMethods 中@WebParam 的等价物是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15440031/

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