在WebAPI工程入口不对外公开的接口不能使用public。
[HttpPost] public string PostRequest([FromBody] Model model) { /// } //Validate方法是不对外公布的,得弄成私有的。 private bool Validate(Model model) { return true; }
时间: 2024-10-06 08:06:26
在WebAPI工程入口不对外公开的接口不能使用public。
[HttpPost] public string PostRequest([FromBody] Model model) { /// } //Validate方法是不对外公布的,得弄成私有的。 private bool Validate(Model model) { return true; }