• Json Ignore


    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Threading.Tasks;
    using Newtonsoft.Json;
    using Newtonsoft.Json.Serialization;

    namespace demo
    {
        public class DynamicJsonContractResolver: DefaultContractResolver
        {
            private readonly string[] _props;

            public DynamicJsonContractResolver(params string[] prop)
            {
                this._props = prop;
            }

            protected override IList<JsonProperty> CreateProperties(Type type, MemberSerialization memberSerialization)
            {
                return base.CreateProperties(type, memberSerialization).Where(p => !this._props.Contains(p.PropertyName)).ToList();
            }
        }
    }
  • 相关阅读:
    go if 判断 完成随机分数的评级
    go for循环
    go 常量2
    go 常量定义和使用
    更新数据库某字段数据为流水号
    BPM设定操作超时
    BPM打印按钮
    BPM链接处理
    项目管理
    公司规划
  • 原文地址:https://www.cnblogs.com/kevin1988/p/15176302.html
Copyright © 2020-2023  润新知