2 writes to Count
Microsoft.AspNetCore.Components.Endpoints.Tests (2)
Binding\FormDataMapperTests.cs (2)
2339public static PooledBuffer CreateBuffer() => new() { Data = Rent(16), Count = 0 }; 2351buffer.Data[buffer.Count++] = element;
3 references to Count
Microsoft.AspNetCore.Components.Endpoints.Tests (3)
Binding\FormDataMapperTests.cs (3)
2343if (buffer.Count >= buffer.Data.Length) 2357var result = new int[buffer.Count]; 2358Array.Copy(buffer.Data, result, buffer.Count);