コード例 #1
0
        // POST api/ping
        public test Post([FromBody]string value)
        {
            test newTest = new test();
            newTest.alive = true;

            return newTest;
        }
コード例 #2
0
        // GET api/ping
        public test Get()
        {
            test newTest = new test();
            newTest.alive = true;

            return newTest;
        }