Is there an equivalent of the 'Platform' in Nancyfx?

In as asp.net I can do the following: Request.Browser.Platform

link|improve this question

75% accept rate
feedback

1 Answer

Nothing out of the box right now, but you have access to the headers so you could parse it out of it yourself.

You should parse the User-Agent HTTP header that you can read from Request.Headers["User-Agent"] .. you could add an extension method for it, or on Request

If you create something reusable then please consider contirbuting it back to the framework

Thanks!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.