4 references to StackAllocThreshold
Microsoft.AspNetCore.Http.Abstractions (4)
PathString.cs (4)
187
Span<char> pathBuffer = uriComponent.Length <=
StackAllocThreshold
? stackalloc char[
StackAllocThreshold
] : new char[uriComponent.Length];
203
Span<char> pathBuffer = uriComponent.Length <
StackAllocThreshold
? stackalloc char[
StackAllocThreshold
] : new char[uriComponent.Length + 1];