3 instantiations of ValueStringBuilder
System.Text.Json (3)
System\Text\Json\Nodes\JsonNode.cs (1)
145
var path = new
ValueStringBuilder
(stackalloc char[JsonConstants.StackallocCharThreshold]);
System\Text\Json\Schema\JsonSchemaExporter.cs (1)
473
using ValueStringBuilder sb =
new
(initialCapacity: path.Length * 10);
System\Text\Json\Serialization\Converters\Value\EnumConverter.cs (1)
405
using ValueStringBuilder sb =
new
(stackalloc char[JsonConstants.StackallocCharThreshold]);
8 references to ValueStringBuilder
System.Text.Json (8)
System\Text\Json\Nodes\JsonArray.cs (1)
241
internal override void GetPath(ref
ValueStringBuilder
path, JsonNode? child)
System\Text\Json\Nodes\JsonNode.cs (2)
145
var
path = new ValueStringBuilder(stackalloc char[JsonConstants.StackallocCharThreshold]);
151
internal abstract void GetPath(ref
ValueStringBuilder
path, JsonNode? child);
System\Text\Json\Nodes\JsonObject.cs (1)
263
internal override void GetPath(ref
ValueStringBuilder
path, JsonNode? child)
System\Text\Json\Nodes\JsonValue.cs (1)
154
internal sealed override void GetPath(ref
ValueStringBuilder
path, JsonNode? child)
System\Text\Json\Reader\JsonReaderHelper.cs (1)
28
public static void AppendEscapedPropertyName(this ref
ValueStringBuilder
builder, string propertyName)
System\Text\Json\Schema\JsonSchemaExporter.cs (1)
473
using
ValueStringBuilder
sb = new(initialCapacity: path.Length * 10);
System\Text\Json\Serialization\Converters\Value\EnumConverter.cs (1)
405
using
ValueStringBuilder
sb = new(stackalloc char[JsonConstants.StackallocCharThreshold]);