5 references to StackallocThreshold
System.Web.HttpUtility (5)
System\Web\Util\HttpEncoder.cs (5)
141var vsb = new ValueStringBuilder(stackalloc char[StackallocThreshold]); 211Span<byte> decodedBytes = count <= StackallocThreshold ? stackalloc byte[StackallocThreshold] : new byte[count]; 461if (e.GetMaxByteCount(str.Length) <= StackallocThreshold) 463Span<byte> byteSpan = stackalloc byte[StackallocThreshold];