Skip to content

Instantly share code, notes, and snippets.

@diegobersano
Created April 2, 2017 22:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diegobersano/4db9053d53715784ee9d215a3e2c7508 to your computer and use it in GitHub Desktop.
Save diegobersano/4db9053d53715784ee9d215a3e2c7508 to your computer and use it in GitHub Desktop.
using System.Collections.Generic;
using System.Web.Http;
namespace WebApi.Controllers
{
public class ValuesController : ApiController
{
/// <summary>
/// Recolecta información de distintos sitios para encontrar todos los valores.
/// </summary>
/// <returns>Todos los valores disponibles en el universo.</returns>
public IEnumerable<string> Get()
{
return new string[] { "value1", "value2" };
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment