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