Priya.InfoList.JsonInfoCategoryService.GetInfoCategoryListView C# (CSharp) Method

GetInfoCategoryListView() private method

private GetInfoCategoryListView ( long pageNo, long itemsPerPage, int dataIndex, string templateSuffix, bool hideDisplay ) : JsonObject
pageNo long
itemsPerPage long
dataIndex int
templateSuffix string
hideDisplay bool
return JsonObject
        public JsonObject GetInfoCategoryListView(long pageNo, long itemsPerPage, int dataIndex, string templateSuffix, bool hideDisplay)
        {
            JsonObject retMessage = new JsonObject();

            string htmlText = InfoCategoryView.GetListAllItemView(pageNo, itemsPerPage, dataIndex, templateSuffix, hideDisplay);
            if (string.IsNullOrEmpty(htmlText) == true) htmlText = " ";
            retMessage.Put("html", htmlText);

            return retMessage;
        }