mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-16 15:16:34 +01:00
28 lines
885 B
C#
28 lines
885 B
C#
|
using TINK.Repository.Exception;
|
|||
|
|
|||
|
namespace TINK.Repository.Response
|
|||
|
{
|
|||
|
public static class JsonConvert
|
|||
|
{
|
|||
|
/// <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);
|
|||
|
}
|
|||
|
}
|