I remember a while back, I was working on a web page based on C# razor. There was a response property that served as a kind of pipeline between the controller and the page. I don't know what it was called but it had an interesting property -
basically it works like a dictionary(of string, object) so that you can dump anything in there by any name except you would use it like this:
ThingNameIDontRemember.name = whatever
After adding the stuff I wanted, I think they even showed up in intellisense autocomplete on the other side (unlike what you'd expect from a generic object)
What is that type called and is it also available outside the mvc bundle? I coul'd really use something like that in my current vb.net project.