Follow the leader
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
To repozytorium jest zarchiwizowane. Możesz wyświetlać pliki i je sklonować, ale nie możesz do niego przepychać zmian lub otwierać zgłoszeń/Pull Requestów.

37 wiersze
840B

  1. using System;
  2. using System.Text;
  3. using Newtonsoft.Json;
  4. namespace Leadercraft.Server
  5. {
  6. internal class LeadercraftResult<T>
  7. {
  8. private string _responseJson;
  9. public readonly int StatusCode;
  10. public bool IsError { get => StatusCode < 200 || StatusCode > 299; }
  11. public ResultStruct<T> ParseResult()
  12. {
  13. return JsonConvert.DeserializeObject<ResultStruct<T>>(_responseJson);
  14. }
  15. public ResultStruct<string> ParseError()
  16. {
  17. return JsonConvert.DeserializeObject<ResultStruct<string>>(_responseJson);
  18. }
  19. public LeadercraftResult(string response, int status = 200)
  20. {
  21. this._responseJson = response;
  22. this.StatusCode = status;
  23. }
  24. public LeadercraftResult(byte[] response, int status = 200)
  25. {
  26. this._responseJson = Encoding.ASCII.GetString(response);
  27. this.StatusCode = status;
  28. }
  29. }
  30. }