-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathSerializeInternalFields.linq
52 lines (41 loc) · 1.35 KB
/
SerializeInternalFields.linq
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<Query Kind="Program">
<NuGetReference>System.Text.Json</NuGetReference>
<Namespace>System.Text.Json.Nodes</Namespace>
<Namespace>System.Text.Json</Namespace>
<Namespace>System.Text.Json.Serialization</Namespace>
<Namespace>System.Runtime.Serialization</Namespace>
<Namespace>System.Text.Json.Serialization.Metadata</Namespace>
</Query>
void Main()
{
var poco = new Poco() { Id = 1 };
var result = JsonSerializer.Serialize<Poco>(poco, DefaultJsonSerializerOptions.Options);
result.Dump();
}
public class Poco
{
internal int Id { get; set; }
private string Value { get; set; } = "Uno";
}
public static class DefaultJsonSerializerOptions
{
public static readonly JsonSerializerOptions Options = new()
{
TypeInfoResolver = new DefaultJsonTypeInfoResolver()
{
Modifiers = { AddInternalPropertiesModifier }
}
};
private static void AddInternalPropertiesModifier(JsonTypeInfo jsonTypeInfo)
{
if (jsonTypeInfo.Kind != JsonTypeInfoKind.Object)
return;
foreach (PropertyInfo property in jsonTypeInfo.Type.GetProperties(BindingFlags.Instance | BindingFlags.NonPublic))
{
JsonPropertyInfo jsonPropertyInfo = jsonTypeInfo.CreateJsonPropertyInfo(property.PropertyType, property.Name);
jsonPropertyInfo.Get = property.GetValue;
jsonPropertyInfo.Set = property.SetValue;
jsonTypeInfo.Properties.Add(jsonPropertyInfo);
}
}
}