2 writes to FlushThreshold
System.Text.Json (2)
System\Text\Json\Serialization\Metadata\JsonTypeInfoOfT.WriteHelpers.cs (2)
149state.FlushThreshold = serializationContext.FlushThreshold; 275state.FlushThreshold = (int)(bufferWriter.Capacity * JsonSerializer.FlushThreshold);
2 references to FlushThreshold
System.Text.Json (2)
System\Text\Json\Serialization\JsonConverter.cs (2)
177return (state.FlushThreshold > 0 && writer.BytesPending > state.FlushThreshold);