当前位置:  开发笔记 > 编程语言 > 正文

C#JsonConvertDeserialization返回空值

如何解决《C#JsonConvertDeserialization返回空值》经验,为你挑选了1个好方法。

我试图理解为什么我得到以下值的空值:

JSON:

{
  "IdentityService": {
    "IdentityTtlInSeconds": "90",
    "LookupDelayInMillis": "3000"
  }
}

类:

public class IdentityService
{
    public string IdentityTtlInSeconds { get; set; }

    public string LookupDelayInMillis { get; set; }
}

叫:

  _identityService = JsonConvert.DeserializeObject(itemAsString);

该类已实例化,但IdentityTtlInSeconds和LookupDelayInMillis的值为null.我不明白为什么他们应该这样



1> dotnetom..:

您还需要一个类 - 一个具有一个属性的对象IdentityService:

public class RootObject
{
    public IdentityService IdentityService { get; set; }
}

你需要这个类,因为你拥有的JSON有一个属性被调用IdentityService,而这个对象有两个属性,叫做IdentityTtlInSecondsLookupDelayInMillis.如果您使用的是默认序列化程序,则您的类需要反映JSON字符串中的结构.

现在您可以使用它来反序列化您的字符串:

var rootObject = JsonConvert.DeserializeObject(itemAsString);
_identityService = rootObject.IdentityService;

推荐阅读
mylvfamily
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有