Get Raw json string in Newtonsoft.Json Library(在 Newtonsoft.Json 库中获取原始 json 字符串)
问题描述
我有这样的json
{
    "name": "somenameofevent",
    "type": "event",
    "data": {
        "object": {
            "age": "18",
            "petName": "18"
        },
        "desct": {
        }
    }
}
我有 2 个这样的对象
and I have 2 objects like this
public class CustEvent
{
    [JsonProperty("name")]
    public string Name { get; set; }
    [JsonProperty("type")]
    public string EventType{ get; set; }
    [JsonProperty("data")]
    public SomeData Data{ get; set; }
}
public class SomeData
{
    [JsonProperty("object")]
    public String SomeObject { get; set;}
    [JsonProperty("dsct")]
    public String SomeDesct { get; set; }
}
我使用将 json 解析为对象 Newtonsoft.NET 库.以及如何将 RAW JSON 转换为 SomeObject 、 SomeDesct 属性?在 JSON 中,data.object ..."是复杂对象,我只想获取这些属性的原始 JSON 字符串.你能帮帮我吗?
I use to parse json to object Newtonsoft.NET library. And how i can get RAW JSON into SomeObject , SomeDesct properties ? In JSON "data.object ..." are complex object and i want to get only RAW JSON String to those properties. Can you help me ?
推荐答案
您不需要编写任何转换器, 只需使用 JRaw 输入如下:
You don't need to write any converters, just use the JRaw type as follows:
public class SomeData
{
    [JsonProperty("object")]
    public JRaw SomeObject { get; set;}
    [JsonProperty("dsct")]
    public JRaw SomeDesct { get; set; }
}
然后您可以通过检查 .Value 属性来访问原始值:
Then you can access the raw value by checking the .Value property:
var rawJsonDesct = (string)data.SomeDesct.Value;
如果您想保留 string 签名,只需将 JSON 序列化为隐藏属性,然后在访问器调用中进行字符串转换即可.
If you want to retain the string signature, just serialize the JSON to a hidden property and have the string conversion in the accessor call instead.
这篇关于在 Newtonsoft.Json 库中获取原始 json 字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Newtonsoft.Json 库中获取原始 json 字符串
				
        
 
            
        - 在 LINQ to SQL 中使用 contains() 2022-01-01
 - 使用 rss + c# 2022-01-01
 - CanBeNull和ReSharper-将其用于异步任务? 2022-01-01
 - 为什么 C# 中的堆栈大小正好是 1 MB? 2022-01-01
 - C# 通过连接字符串检索正确的 DbConnection 对象 2022-01-01
 - 带问号的 nvarchar 列结果 2022-01-01
 - 是否可以在 .Net 3.5 中进行通用控件? 2022-01-01
 - Windows 喜欢在 LINUX 中使用 MONO 进行服务开发? 2022-01-01
 - 在 C# 中异步处理项目队列 2022-01-01
 - Azure Active Directory 与 MVC,客户端和资源标识同一 2022-01-01
 
						
						
						
						
						