In WebApi2 it was common to put arbitrary objects into HttRequestMessage.Properties
. Usually it was doing with extension-methods like request.SetUserRights()
where SetUserRights
just put an object into request.Properties[HttpPropertyKey.UserRights]
.
Now in ASP.NET 5 there is no such property in HttpRequest
.
What pattern is supposed to be be used for passing arbitrary objects along with http request?
In WebApi for putting objects in request.Properties filters were used usually. We still have filters in AspNet5, so the question can be rephrased as: where should a filter put common data specific for the request. Examples of such data can be: current user's roles, current user's language and so on.
HttpContext
class has Items
property which you can use for this purpose.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With