2 writes to Count
Microsoft.AspNetCore.Components.Endpoints (2)
FormMapping\Converters\CollectionAdapters\ArrayPoolBufferAdapter.cs (2)
12public static PooledBuffer CreateBuffer() => new() { Data = ArrayPool<TElement>.Shared.Rent(16), Count = 0 }; 24buffer.Data[buffer.Count++] = element;
2 references to Count
Microsoft.AspNetCore.Components.Endpoints (2)
FormMapping\Converters\CollectionAdapters\ArrayPoolBufferAdapter.cs (2)
16if (buffer.Count >= buffer.Data.Length) 30var result = TCollectionFactory.ToResultCore(buffer.Data, buffer.Count);