コード例 #1
0
        public static ListAllCategoryResponse Unmarshall(UnmarshallerContext context)
        {
            ListAllCategoryResponse listAllCategoryResponse = new ListAllCategoryResponse();

            listAllCategoryResponse.HttpResponse = context.HttpResponse;
            listAllCategoryResponse.RequestId    = context.StringValue("ListAllCategory.RequestId");

            List <ListAllCategoryResponse.ListAllCategory_Category> listAllCategoryResponse_categoryList = new List <ListAllCategoryResponse.ListAllCategory_Category>();

            for (int i = 0; i < context.Length("ListAllCategory.CategoryList.Length"); i++)
            {
                ListAllCategoryResponse.ListAllCategory_Category category = new ListAllCategoryResponse.ListAllCategory_Category();
                category.CateId   = context.StringValue("ListAllCategory.CategoryList[" + i + "].CateId");
                category.CateName = context.StringValue("ListAllCategory.CategoryList[" + i + "].CateName");
                category.ParentId = context.StringValue("ListAllCategory.CategoryList[" + i + "].ParentId");
                category.Level    = context.StringValue("ListAllCategory.CategoryList[" + i + "].Level");

                listAllCategoryResponse_categoryList.Add(category);
            }
            listAllCategoryResponse.CategoryList = listAllCategoryResponse_categoryList;

            return(listAllCategoryResponse);
        }
コード例 #2
0
        public static ListAllCategoryResponse Unmarshall(UnmarshallerContext context)
        {
            ListAllCategoryResponse listAllCategoryResponse = new ListAllCategoryResponse()
            {
                HttpResponse = context.HttpResponse,
                RequestId    = context.StringValue("ListAllCategory.RequestId")
            };
            List <ListAllCategoryResponse.Category> categoryList = new List <ListAllCategoryResponse.Category>();

            for (int i = 0; i < context.Length("ListAllCategory.CategoryList.Length"); i++)
            {
                ListAllCategoryResponse.Category category = new ListAllCategoryResponse.Category()
                {
                    CateId   = context.StringValue($"ListAllCategory.CategoryList[{i}].CateId"),
                    CateName = context.StringValue($"ListAllCategory.CategoryList[{i}].CateName"),
                    ParentId = context.StringValue($"ListAllCategory.CategoryList[{i}].ParentId"),
                    Level    = context.StringValue($"ListAllCategory.CategoryList[{i}].Level")
                };
                categoryList.Add(category);
            }
            listAllCategoryResponse.CategoryList = categoryList;

            return(listAllCategoryResponse);
        }