15 references to SerializerSettings
Microsoft.AspNetCore.Mvc.NewtonsoftJson (15)
DependencyInjection\MvcNewtonsoftJsonOptionsExtensions.cs (6)
30if (options.SerializerSettings.ContractResolver is DefaultContractResolver resolver) 39if (options.SerializerSettings.ContractResolver == null) 44var contractResolverName = options.SerializerSettings.ContractResolver.GetType().Name; 65if (options.SerializerSettings.ContractResolver is DefaultContractResolver resolver) 71if (options.SerializerSettings.ContractResolver == null) 76var contractResolverName = options.SerializerSettings.ContractResolver.GetType().Name;
DependencyInjection\NewtonsoftJsonMvcOptionsSetup.cs (3)
47options.OutputFormatters.Add(new NewtonsoftJsonOutputFormatter(_jsonOptions.SerializerSettings, _charPool, options, _jsonOptions)); 56_jsonOptions.SerializerSettings, 65_jsonOptions.SerializerSettings,
NewtonsoftJsonHelper.cs (1)
35_defaultSettingsJsonSerializer = CreateHtmlSafeSerializer(options.Value.SerializerSettings);
NewtonsoftJsonInputFormatter.cs (1)
36/// (<see cref="MvcNewtonsoftJsonOptions.SerializerSettings"/>) or an instance
NewtonsoftJsonOutputFormatter.cs (2)
31/// (<see cref="MvcNewtonsoftJsonOptions.SerializerSettings"/>) or an instance 49/// (<see cref="MvcNewtonsoftJsonOptions.SerializerSettings"/>) or an instance
NewtonsoftJsonPatchInputFormatter.cs (1)
25/// (<see cref="MvcNewtonsoftJsonOptions.SerializerSettings"/>) or an instance
NewtonsoftJsonResultExecutor.cs (1)
150return _jsonOptions.SerializerSettings;