JSON object creation PushStreamContent
问题 I have asp.net web api and has a HTTPResponseMessage and the api method name GetPersonDataStream , which actually stream each person object as a json. So when I see the result the actual Data has been constructed like two seperate object's with no comma in between the two objects are it isn't constructed as I required. Actual streamed data : {"Name":"Ram","Age":30}{"Name":"Sam","Age":32} . But I want this to streamed as a proper JSON as: {"response": [ {"Name":"Ram","Age":30}, {"Name":"Sam",