Black Rock Reporting Azure Function
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.

HttpErrorStatusCodeException.cs 493B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Net;
  5. using System.Net.Http;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BlackRockReportFunction.Exception
  9. {
  10. public class HttpErrorStatusCodeException : HttpRequestException
  11. {
  12. public HttpErrorStatusCodeException(HttpStatusCode errorStatusCode)
  13. {
  14. ErrorStatusCode = errorStatusCode;
  15. }
  16. public HttpStatusCode ErrorStatusCode { get; set; }
  17. }
  18. }