chore: 初始化合力驱动桥MES采集程序
This commit is contained in:
21
Common/00-1Json8.3/Json8.3/Linq/MergeNullValueHandling.cs
Normal file
21
Common/00-1Json8.3/Json8.3/Linq/MergeNullValueHandling.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
|
||||
namespace Newtonsoft.Json.Linq
|
||||
{
|
||||
/// <summary>
|
||||
/// Specifies how null value properties are merged.
|
||||
/// </summary>
|
||||
[Flags]
|
||||
public enum MergeNullValueHandling
|
||||
{
|
||||
/// <summary>
|
||||
/// The content's null value properties will be ignored during merging.
|
||||
/// </summary>
|
||||
Ignore = 0,
|
||||
|
||||
/// <summary>
|
||||
/// The content's null value properties will be merged.
|
||||
/// </summary>
|
||||
Merge = 1
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user