MvcFlash.Tests.HttpSessionMock.this C# (CSharp) Method

this() public method

public this ( string name ) : object
name string
return object
        public override object this[string name]
        {
            get { return (objects.ContainsKey(name)) ? objects[name] : null; }
            set { objects[name] = value; }
        }
HttpSessionMock