1 write to ProblemDetails
Microsoft.AspNetCore.Mvc.Formatters.Xml (1)
ProblemDetailsWrapper.cs (1)
37ProblemDetails = problemDetails;
18 references to ProblemDetails
Microsoft.AspNetCore.Mvc.Formatters.Xml (18)
ProblemDetailsWrapper.cs (18)
82ProblemDetails.Detail = value; 86ProblemDetails.Instance = value; 90ProblemDetails.Status = string.IsNullOrEmpty(value) ? 96ProblemDetails.Title = value; 100ProblemDetails.Type = value; 109ProblemDetails.Extensions.Add(name, value); 117if (!string.IsNullOrEmpty(ProblemDetails.Detail)) 121ProblemDetails.Detail); 124if (!string.IsNullOrEmpty(ProblemDetails.Instance)) 128ProblemDetails.Instance); 131if (ProblemDetails.Status.HasValue) 134writer.WriteValue(ProblemDetails.Status.Value); 138if (!string.IsNullOrEmpty(ProblemDetails.Title)) 142ProblemDetails.Title); 145if (!string.IsNullOrEmpty(ProblemDetails.Type)) 149ProblemDetails.Type); 152foreach (var keyValuePair in ProblemDetails.Extensions) 176return ProblemDetails;