由于某些原因,我的代码无效,可能位于contacthours.Hours1From
和contacthours.Hours1To
部分。
ExtendedContactDetailsType contactdetails = new ExtendedContactDetailsType();
contactdetails.ClassifiedAdContactByEmailEnabled = true;
ContactHoursDetailsType contacthours = new ContactHoursDetailsType();
contacthours.Hours1AnyTime = false;
contacthours.Hours1Days = DaysCodeType.Weekdays;
contacthours.Hours1From = DateTime.ParseExact("08:00", "hh:mm", null);
contacthours.Hours1To = DateTime.ParseExact("16:00", "hh:mm", null);
contacthours.TimeZoneID = "Eastern";
contactdetails.ContactHoursDetails = contacthours;
item.ExtendedSellerContactDetails = contactdetails;
答案 0 :(得分:3)
第一个问题是您没有使用24小时格式字符串:
contacthours.Hours1From = DateTime.ParseExact("08:00", "HH:mm", null);
contacthours.Hours1To = DateTime.ParseExact("16:00", "HH:mm", null);
该仅问题是否不明确。