/// /// Gets some very important data from the server. /// public IEnumerable Get() { return new string[] { "value1", "value2" }; } /// /// Looks up some data by ID. /// /// The ID of the data. public string Get(int id) { return "value"; }