I'm using microsoft's APIController in a web api, I'd like to see information about the requestor, such as the IP and whatever other info about requestor I can find out. IE
public class ExampleController : ApiController
{
[HttpGet]
[HttpPost]
public HttpResponseMessage GetStuff(HttpRequestMessage message)
{
//get info about caller, maybe using
//HttpContext.Current.Request. something
var requestorIP = ????
}
}