パラメータ
- odataPath
- ODataパス
public class SampleApi : ForguncyApi { [Post] public void GetDataSampleByOData() { StreamReader reader = new StreamReader(this.Context.Request.Body); string message = reader.ReadToEnd(); using (var responseWriter = new StreamWriter(this.Context.Response.Body, Encoding.UTF8)) { responseWriter.Write(JsonConvert.SerializeObject(this.DataAccess.GetTableData(message), Formatting.Indented)); } } }