mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-01 00:46:33 +01:00
27 lines
892 B
C#
27 lines
892 B
C#
using TINK.Repository.Exception;
|
|
|
|
namespace TINK.Repository.Response
|
|
{
|
|
public static class JsonConvertRethrow
|
|
{
|
|
/// <summary>
|
|
/// Deserializes COPRI responses in a consitent way for entire app.
|
|
/// </summary>
|
|
/// <typeparam name="T">Type of object to serialize to.</typeparam>
|
|
/// <param name="response">JSON to deserialize.</param>
|
|
/// <returns>Deserialized object.</returns>
|
|
public static T DeserializeObject<T>(string response)
|
|
{
|
|
try
|
|
{
|
|
return Newtonsoft.Json.JsonConvert.DeserializeObject<T>(response);
|
|
}
|
|
catch (System.Exception ex)
|
|
{
|
|
throw new DeserializationException(ex);
|
|
}
|
|
}
|
|
|
|
public static string SerializeObject(object value) => Newtonsoft.Json.JsonConvert.SerializeObject(value);
|
|
}
|
|
}
|