Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Error.cs 340B

123456789101112131415
  1. using System.Net;
  2. using System.Text.Json;
  3. namespace BlackRock.Reporting.API.Exceptions
  4. {
  5. public class Error
  6. {
  7. public string Title { get; set; }
  8. public HttpStatusCode StatusCode { get; set; }
  9. public override string ToString()
  10. {
  11. return JsonSerializer.Serialize(this);
  12. }
  13. }
  14. }