I'm using this package which I installed from NuGet.
I've got a method that looks like this:
[GET("StreamFile/{filename}")]
public FileStreamResult StreamImageByFileName(string filename)
Which I reference like this:
<img src="@Url.Action("StreamImageByFileName", new{filename=item.ThumbFile})" />
Which comes out like this:
<img src="/StreamFile/3hg7p1wr_wjtkpn8-g80heh3f.jpg" />
But it never makes it into my method, and always returns 404s.
Why? It's reversing the URL correctly, so why won't it match when it makes a request to it?