Rebel.Cms.Web.Mvc.CustomJsonResult.CustomJsonResult C# (CSharp) Method

CustomJsonResult() public method

public CustomJsonResult ( Func outputJson ) : System
outputJson Func
return System
        public CustomJsonResult(Func<string> outputJson)
        {
            OutputJson = outputJson;
            Data = null;
        }