O código está retornando um erro ao tentar acessar o webservice.
public async Task GetVeiculos()
{
HttpClient cliente = new HttpClient();
var resultado = await cliente.GetStringAsync(URL_GET_VEICULOS);
var veiculosJson = JsonConvert.DeserializeObject<VeiculoJson[]>(resultado);
}
Está retornando um erro genérico: "An error occurred while sending the request".
Abaixo também código da View:
protected async override void OnAppearing()
{
base.OnAppearing();
MessagingCenter.Subscribe<Veiculo>(this, "VeiculoSelecionado",
(msg) =>
{
Navigation.PushAsync(new DetalheView(msg));
}
);
await this.ViewModel.GetVeiculos();
}