2 implementations of Rent
Microsoft.AspNetCore.Mvc.ViewFeatures (2)
Buffers\ArrayPoolBufferSource.cs (1)
17
public char[]
Rent
(int bufferSize) => _pool.Rent(bufferSize);
Buffers\CharArrayBufferSource.cs (1)
10
public char[]
Rent
(int bufferSize) => new char[bufferSize];
10 references to Rent
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
Buffers\PagedCharBuffer.cs (1)
139
page = BufferSource.
Rent
(PageSize);
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (9)
Buffers\PagedCharBufferTest.cs (9)
89
.Setup(s => s.
Rent
(PagedCharBuffer.PageSize))
114
.Setup(s => s.
Rent
(PagedCharBuffer.PageSize))
176
.SetupSequence(s => s.
Rent
(PagedCharBuffer.PageSize))
207
.SetupSequence(s => s.
Rent
(PagedCharBuffer.PageSize))
237
.Setup(s => s.
Rent
(PagedCharBuffer.PageSize))
326
.SetupSequence(s => s.
Rent
(PagedCharBuffer.PageSize))
357
.SetupSequence(s => s.
Rent
(PagedCharBuffer.PageSize))
387
.Setup(s => s.
Rent
(PagedCharBuffer.PageSize))
444
bufferSource.Setup(s => s.
Rent
(PagedCharBuffer.PageSize))