在HttpRequestMessage
我可以访问名为RequestUri
的属性,它为我提供了许多属性。
然而,我找不到有我需要的东西。我需要获得没有价值的路径。
例如我可以得到这个: / api / users / 1 / country / 1 / city / 77 / detail
但我需要的是没有值的路径: / api / users / {userId} / country / {countryId} / city / {cityId} / detail
有没有办法直接获得它?
由于