I have a list of results that come from a custom object. I have tried to serialize it in various ways, however it always returns the data with these "/:" signs.
I am using .NET Framework 4.7 in a traditional ASPX app, here is the code of the function that returns the mis-serialized data:
public static string loadAsyncFotografiasTags()
{
try
{
NoticiaLandingNegocio obrNoticiaPortal = new NoticiaLandingNegocio();
List<ENFotografiaSearchTag> objNoticiaPortal = obrNoticiaPortal._LandingSearchFotografiabyTags("COVID19, PANDEMIA");
JsonSerializer ser = new JsonSerializer();
string jsonresp = JsonConvert.SerializeObject(objNoticiaPortal);
return jsonresp;
}
catch (Exception Err)
{
throw new Exception(Err.Message);
}
}
I have tried to serialize it with several libraries and it always returns the data with those signs
Data example:
"[{\"idFotografia\":96223,\"Leyenda\":\"El Ministro de Salud, Oscar Ugarte, participó en el taller de comunicación de riesgo: \\\"La experiencia de la preparación contra la pandemia de influenza\\\". Foto: ANDINA / Rubén Grández.\",\"Descripcion\":\"\",\"Fecha\":\"2009-05-28T00:00:00\",\"Imagen\":\"000096223M.jpg\",\"Seccion\":\"Política\",\"Fotografo\":\"ANDINA/archivo\",\"URLPhoto\":\"http://andina.pe/agencia/foto-el-ministro-salud-oscar-ugarte-participo-el-taller-comunicacion-riesgo-experiencia-de-preparacion-contra-pandemia-influenza-foto-andina-ruben-grandez-96223.aspx\",\"URLImageFotografia\":\"https://portal.andina.pe/EDPfotografia2/Thumbnail/2009/05/28/000096223M.jpg\"},{\"idFotografia\":96226,\"Leyenda\":\"El Ministro de Salud, Oscar Ugarte,declara luego de participar en el taller de comunicación de riesgo: \\\"La experiencia de la preparación contra la pandemia de influenza\\\". \\r\\nFoto: ANDINA / Rubén Grández.\",\"Descripcion\":\"\",\"Fecha\":\"2009-05-28T00:00:00\",\"Imagen\":\"000096226M.jpg\",\"Seccion\":\"Política\",\"Fotografo\":\"ANDINA/archivo\",\"URLPhoto\":\"http://andina.pe/agencia/foto-el-ministro-salud-oscar-ugartedeclara-luego-participar-el-taller-comunicacion-riesgo-experiencia-de-preparacion-contra-pandemia-influenza-\\r\\nfoto-andina-ruben-grandez-96226.aspx\",\"URLImageFotografia\":\"https://portal.andina.pe/EDPfotografia2/Thumbnail/2009/05/28/000096226M.jpg\"}]"
Please any idea what is happening? Thanks