0
WEBAPI内の要求と一致する発見されました:複数のアクションは、私はさまざまなアクションとコントローラーを持っており、そのうちの一つがある
[HttpGet]
public IList<string> GetBar()
{ ... }
要求がlocalhostに/ API /私の/ fooが/失敗:
Multiple actions were found that match the request:
↵System.Collections.Generic.IList`1[System.String] GetFoo(System.String) on type Controllers.MyController
↵System.Collections.Generic.IList`1[System.String] GetBar() on type Controllers.MyController"
なぜこのようなことが起こりますか?私は、action = "GetFoo"をapi/my/fooに指定しました。なぜそれがGetBarにマッチするのですか?