I am having a bad time trying to consume an XML service.
This is my code to consume the service (it is a public service so you can consume it):
using( var client = new HttpClient() )
{
    client.DefaultRequestHeaders
        .Accept
        .Add( new MediaTypeWithQualityHeaderValue( "text/xml" ) );
    var request = new HttpRequestMessage( HttpMethod.Get, "https://gee.bccr.fi.cr/Indicadores/Suscripciones/WS/wsindicadoreseconomicos.asmx/ObtenerIndicadoresEconomicosXML?Indicador=317&FechaInicio=20%2F04%2F2022&FechaFinal=20%2F04%2F2022&Nombre=Jos%C3%A9+Miguel+Torres+G%C3%B3mez&SubNiveles=N&CorreoElectronico=josetorres%40outlook.com&Token=2LOEU2EM8O" );
    var returnedXml = client.SendAsync( request ).Result.Content.ReadAsStringAsync().Result;
    Console.WriteLine( returnedXml );
}
The response I get from there is the following, adding the console screenshot  due to it returns special scape chars:

<string xmlns="http://ws.sdde.bccr.fi.cr">
  <Datos_de_INGC011_CAT_INDICADORECONOMIC>
    <INGC011_CAT_INDICADORECONOMIC>
      <COD_INDICADORINTERNO>317</COD_INDICADORINTERNO>
      <DES_FECHA>2022-04-20T00:00:00-06:00</DES_FECHA>
      <NUM_VALOR>650.10000000</NUM_VALOR>
    </INGC011_CAT_INDICADORECONOMIC>
  </Datos_de_INGC011_CAT_INDICADORECONOMIC>
</string>
This is the class I use to try to deserialize:
public class Datos_de_INGC011_CAT_INDICADORECONOMIC
{
    public INGC011_CAT_INDICADORECONOMIC INGC011_CAT_INDICADORECONOMIC { get; set; }
}
public class INGC011_CAT_INDICADORECONOMIC
{
    public int COD_INDICADORINTERNO { get; set; }
    public DateTime DES_FECHA { get; set; }
    public double NUM_VALOR { get; set; }
}
But when I try to Deserialize the string I get the error: There is an error in XML document. Data at the root level is invalid. And due to I don't use to work with XML data I am stocked here.
 
    
 
    