0
var details= _clientService.GetAsync<DoctorDetails>(getDetails).Result;
當我在GetAsync中使用「對象」而不是DoctorDetails時,我從服務獲得JSON結果。但是,我沒有看到任何屬性值被詳細填充(DoctorDetails中的所有值都是null)。 DoctorDetails是我通過xsd生成的模式的cs文件。從服務中獲取數據但是對象是空的
DoctorDetails是一個自動生成的文件,其中包含像
Name屬性 ID等
如何反序列化這一點,並在這些屬性獲得的值(在細節上面的變量)
編輯
它只是返回值,如果我這樣的語法
var details= _clientService.GetAsync<object>(getDetails).Result;
搜索時,這是全部爲空的隊友。不工作 – Learner
那麼這是否返回任何'var details = _clientService.GetAsync