Provide ArrayPool object to JsonOutputFormatter constructor

梦想的初衷 提交于 2019-12-05 01:47:42
var formatter = new JsonOutputFormatter(formatterSettings, ArrayPool<Char>.Shared);

Source

In the comments:

The JsonOutputFormatter now needs a ArrayPool when creating it, you can pass in ArrayPool.Shared.

I also noticed there is a .Create() method on ArrayPool.

var formatter = new JsonOutputFormatter(formatterSettings, ArrayPool<Char>.Create());
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!