Priya.InfoList.JsonInfoPageService.GetInfoPageListView C# (CSharp) Method

GetInfoPageListView() private method

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

            string htmlText = InfoPageView.GetListAllItemView(pageNo, itemsPerPage, dataIndex, templateSuffix, asyncLoading, 0, "", false, 0, true);
            retMessage.Put("html", htmlText);

            return retMessage;
        }