public IDictionary<string, object> Run(IDictionary<string, object> context)
        {
            if (context.GetStatusCode() != HttpStatusCode.OK)
                context.SetError("Status code was not OK.");

            return context;
        }