11 references to Advance
IISExpress.FunctionalTests (11)
src\Shared\ServerInfrastructure\BufferExtensions.cs (6)
123buffer.Advance(sourceLength); 142bufferWriter.Advance(1); 151bufferWriter.Advance(2); 162bufferWriter.Advance(3); 204buffer.Advance(sourceLength); 230buffer.Advance(bytesUsed);
src\Shared\ServerInfrastructure\BufferWriter.cs (5)
20/// The result of the last call to <see cref="IBufferWriter{T}.GetSpan(int)"/>, less any bytes already "consumed" with <see cref="Advance(int)"/>. 26/// The number of uncommitted bytes (all the calls to <see cref="Advance(int)"/> since the last call to <see cref="Commit"/>). 87/// Copies the caller's buffer into this writer and calls <see cref="Advance(int)"/> with the length of the source buffer. 96Advance(source.Length); 148Advance(writable);