我有一个 WebService API,它需要它的 2 个参数在 WSDL 中是可选的
public wsProxy[] Insert(wsProxy[] proxies, string loginname, string password, bool returnNewData)
{
//code here
}
我需要一种在 WSDL 中显示loginname
和作为可选的方式。password
有没有办法在 C# 中做到这一点。我可以在这样的参数前面添加一个标签[optional]loginname
吗?
我一直在四处寻找,但到目前为止还没有找到任何东西。