6 references to PayloadLength
Microsoft.AspNetCore.OutputCaching.Microbenchmarks (6)
EndToEndBenchmarks.cs (6)
32
private ReadOnlyMemory<byte> Payload => new(_payloadOversized, 0,
PayloadLength
);
52
_payloadOversized = ArrayPool<byte>.Shared.Rent(
PayloadLength
);
57
ContentLength =
PayloadLength
,
193
if (body.Length !=
PayloadLength
)
207
var oversized = ArrayPool<byte>.Shared.Rent(
PayloadLength
);
209
if (!Payload.Span.SequenceEqual(new(oversized, 0,
PayloadLength
)))