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