2 writes to _chars
Microsoft.AspNetCore.Antiforgery (2)
Internal\AntiforgerySerializationContext.cs (2)
92
_chars
= new char[newLength];
102
_chars
= null;
7 references to _chars
Microsoft.AspNetCore.Antiforgery (7)
Internal\AntiforgerySerializationContext.cs (7)
84
if (
_chars
== null ||
_chars
.Length < count)
86
var newLength =
_chars
== null ? InitialCharsLength : checked(
_chars
.Length * 2);
95
return
_chars
;
100
if (
_chars
!= null &&
_chars
.Length > MaximumCharsLength)