What are these extra parameters in my ASMX Proxy Methods?

后端 未结 4 1326
没有蜡笔的小新
没有蜡笔的小新 2020-12-19 05:29

If I add a web reference from a .NET 1.1 client to a WCF service, the proxy methods generated at the client contain an extra parameter ending with the suffix \'Specified\' f

4条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-19 06:04

    The issue is with parameters of a value type when they are permitted to be absent. .NET 1.1 has no way to specify this without the *specified parameters. They need to be set to true to indicate that the corresponding parameter is being sent.

提交回复
热议问题