Shrike
Shrike

Reputation: 9500

What is an analog of request.Properties in ASP.NET 5

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.

Upvotes: 14

Views: 5655

Answers (1)

tugberk
tugberk

Reputation: 58494

HttpContext class has Items property which you can use for this purpose.

Upvotes: 19

Related Questions