Почему json приходит не весь?

106
10 июля 2021, 19:20

Отправляю в ответ на запрос json

    // POST parser/upload
    [HttpPost]
    public JsonResult Post(IFormFile file)
    {
        var fileStream = new FileStream(environment.WebRootPath+"/Files/"+ file.FileName, FileMode.Create);
        file.CopyTo(fileStream);
        var root = Parser.Parse(fileStream);
        if (root != null)
        {
            var jsonRoot = new JsonResult(root);
            jsonRoot.ContentType = "application/json";
            return jsonRoot;
        }
        return null;
    }

root представляет из себя Section.cs:

public class Section
{
    private static int newId;
    public int Id { get; set; }  
    public string Name { get; set; }
    public string Text { get; set; }
    public int Level { get; set; }
    public Section ParentSection { get; set; }
    public List<Section> ChildsSections { get; set; }
    public bool HasParent { get => Level > 0 || ParentSection != null; }
    public bool HasChilds { get => ChildsSections.Count > 0; }
    public int ChildsCount { get => ChildsSections.Count; }
}

При отправке запроса приходит только часть json-a:

{"id":0,
 "name":null,
 "text":"Text of Section0",
 "level":0,
 "parentSection":null,
 "childsSections":[
      {"id":1,
       "name":"SectionName1 ",
       "text":"Text of      SectionName1",
       "level":1

Почему так происходит?

READ ALSO
&ldquo;Вручную&rdquo; расшифровать ответ от сайта формата &ldquo;Content-Encoding: br&rdquo;

“Вручную” расшифровать ответ от сайта формата “Content-Encoding: br”

Как это сделать? Запросы отправлячются через TcpClientПоэтому тело ответа походу декодировать самому нужно

99
Получение данных с com-порта

Получение данных с com-порта

Работаю с com-портомВходящие данные на com-порт получаю так:

93
Как с помощью C# очистить корзину?

Как с помощью C# очистить корзину?

Как с помощью C# очистить корзину?

85
2019.2.4f1 android il2cpp.exe did not run properly

2019.2.4f1 android il2cpp.exe did not run properly

Как решить проблему со сборкой при IL2CPP в Unity?

115