3 references to StackallocByteThreshold
Microsoft.AspNetCore.Identity (3)
Passkeys\BufferSourceJsonConverter.cs (3)
47
Span<byte> byteSpan = utf8Unescaped.Length <=
StackallocByteThreshold
?
48
stackalloc byte[
StackallocByteThreshold
] :
80
var byteSpan = encodedLength <=
StackallocByteThreshold
?