-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEnumToJsonMultipleTypes.cs
148 lines (127 loc) · 3.9 KB
/
EnumToJsonMultipleTypes.cs
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using Newtonsoft.Json.Serialization;
// Original enum with the StringEnumConverter attribute
[JsonConverter(typeof(StringEnumConverter))]
public enum UserRole
{
Admin = 0,
User = 1,
Moderator = 2,
Guest = 3
}
// Another enum with the same attribute
[JsonConverter(typeof(StringEnumConverter))]
public enum PaymentType
{
CreditCard = 0,
BankTransfer = 1,
PayPal = 2
}
// User class
public class User
{
public int Id { get; set; }
public string Name { get; set; }
public UserRole Role { get; set; }
public PaymentType PreferredPaymentMethod { get; set; }
}
public class Program
{
public static void Main()
{
var user = new User
{
Id = 1,
Name = "John Doe",
Role = UserRole.Admin,
PreferredPaymentMethod = PaymentType.CreditCard
};
// Only UserRole will be serialized as an integer, PaymentType remains as string
var settings = new JsonSerializerSettings
{
ContractResolver = new SelectiveEnumContractResolver(typeof(UserRole))
// Could add multiple enums: new SelectiveEnumContractResolver(typeof(UserRole), typeof(AnotherEnum))
};
string json = JsonConvert.SerializeObject(user, settings);
Console.WriteLine(json);
// For ASP.NET Core example, see below
}
}
// Generic contract resolver that targets specific enum types
public class SelectiveEnumContractResolver : DefaultContractResolver
{
private readonly HashSet<Type> _enumTypesToSerializeAsIntegers;
public SelectiveEnumContractResolver(params Type[] enumTypes)
{
_enumTypesToSerializeAsIntegers = new HashSet<Type>();
foreach (var type in enumTypes)
{
if (type.IsEnum)
{
_enumTypesToSerializeAsIntegers.Add(type);
}
}
}
protected override JsonContract CreateContract(Type objectType)
{
JsonContract contract = base.CreateContract(objectType);
// Only remove JsonConverter for specific enum types
if (objectType.IsEnum && _enumTypesToSerializeAsIntegers.Contains(objectType))
{
contract.Converter = null;
}
return contract;
}
}
// Usage in ASP.NET Core for specific controllers
/*
[ApiController]
[Route("api/[controller]")]
public class UsersController : ControllerBase
{
private readonly JsonSerializerSettings _jsonSettings;
public UsersController()
{
_jsonSettings = new JsonSerializerSettings
{
ContractResolver = new SelectiveEnumContractResolver(typeof(UserRole))
};
}
[HttpGet("{id}")]
public IActionResult GetUser(int id)
{
var user = // Get user from repository
// Override the default serialization for this specific action
return new JsonResult(user, _jsonSettings);
}
}
*/
// For global configuration with selective enums:
/*
public void ConfigureServices(IServiceCollection services)
{
services.AddControllers()
.AddNewtonsoftJson(options =>
{
options.SerializerSettings.ContractResolver =
new SelectiveEnumContractResolver(typeof(UserRole), typeof(OtherEnum));
});
}
*/
// Extension method for more convenient usage:
public static class JsonExtensions
{
public static string SerializeWithIntegerEnums<T>(this T obj, params Type[] enumTypes)
{
var settings = new JsonSerializerSettings
{
ContractResolver = new SelectiveEnumContractResolver(enumTypes)
};
return JsonConvert.SerializeObject(obj, settings);
}
}
// Usage example of the extension method:
// string json = user.SerializeWithIntegerEnums(typeof(UserRole));