1 write to SerializerOptions
Microsoft.AspNetCore.Mvc.Core (1)
Formatters\SystemTextJsonInputFormatter.cs (1)
28
SerializerOptions
= options.JsonSerializerOptions;
3 references to SerializerOptions
Microsoft.AspNetCore.Mvc.Core (3)
Formatters\SystemTextJsonInputFormatter.cs (3)
75
model = await JsonSerializer.DeserializeAsync(httpContext.Request.Body, context.ModelType,
SerializerOptions
);
79
model = await JsonSerializer.DeserializeAsync(httpContext.Request.BodyReader, context.ModelType,
SerializerOptions
);
85
model = await JsonSerializer.DeserializeAsync(inputStream, context.ModelType,
SerializerOptions
);