我正在尝试创建带有时间戳的WebServicesClientProtocol。
currentService = new CurrentService()
{
Timeout = parameters.CallTimeoutInSeconds * 1000,
Url = url
};
currentService.OGHeaderValue = BuildHeader();
UsernameToken token = new UsernameToken(username,password,
PasswordOption.SendPlainText);
currentService.RequestSoapContext.Security.Tokens.Add(token);
现在,如果我看一下我的SoapContext.Security.Timestamp,
为什么“创建/到期时间”是DateTime的默认值,为什么我可以使用UTC初始化时间戳?