我的 WCF Web 服务中有以下方法签名:
public CreateItemResult CreateAgent(int tenantId, string loginName, int timeZoneId)
如何timeZoneId
在我的 SOAP 中传递 Null 值?我尝试在我的 SOAP 请求中传递以下内容,但没有成功:
<timeZoneId i:nil="true" xmlns:i="http://www.w3.org/2001/XMLSchema-instance" />
我必须更改int timeZoneId
为int? timeZoneId
在我的 WCF Web 服务中才能将 Null 值传递给它吗?还有其他方法吗?
谢谢!