Owin.RequestWriter.SetItem C# (CSharp) Method

SetItem() public method

public SetItem ( string key, object value ) : RequestWriter
key string
value object
return RequestWriter
        public RequestWriter SetItem(string key, object value)
        {
            Items[key] = value;
            return this;
        }