属性ルーティングを使用してWebApiで 'null'文字列(URLに渡したもの)をnull値に変換する最適な方法は何ですか?WebApi - ヌル文字列をヌル値に変換する
URLのサンプル:
はlocalhost:29365/API/myController /テスト/最初/ナル/第三
アピコントローラメソッドのサンプル:
[HttpGet]
[Route("~/api/MyController/Test/{first}/{second}/{third}")]
public void Test(string first, string second, string third)
{ ... }
パラメータでnull値をnullにしたい –