6 overrides of UnflushedBytes
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Infrastructure\StatusCheckPipeWriter.cs (1)
29public override long UnflushedBytes => _inner.UnflushedBytes;
Internal\Infrastructure\WrappingPipeWriter.cs (1)
24public override long UnflushedBytes => _inner.UnflushedBytes;
Microsoft.Extensions.Logging.Console (1)
src\libraries\Common\src\System\Text\Json\PooledByteBufferWriter.cs (1)
232public override long UnflushedBytes => _index;
System.IO.Pipelines (2)
System\IO\Pipelines\Pipe.DefaultPipeWriter.cs (1)
46public override long UnflushedBytes => _pipe.GetUnflushedBytes();
System\IO\Pipelines\StreamPipeWriter.cs (1)
277public override long UnflushedBytes => _bytesBuffered;
System.Text.Json (1)
src\libraries\Common\src\System\Text\Json\PooledByteBufferWriter.cs (1)
232public override long UnflushedBytes => _index;
4 references to UnflushedBytes
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Infrastructure\StatusCheckPipeWriter.cs (1)
29public override long UnflushedBytes => _inner.UnflushedBytes;
Internal\Infrastructure\WrappingPipeWriter.cs (1)
24public override long UnflushedBytes => _inner.UnflushedBytes;
System.IO.Pipelines (1)
System\IO\Pipelines\PipeWriter.cs (1)
40/// <value><see langword="true" />If a class derived from <see cref="System.IO.Pipelines.PipeWriter" /> does not support getting the unflushed bytes, calls to <see cref="System.IO.Pipelines.PipeWriter.UnflushedBytes" /> throw <see cref="System.NotImplementedException" />.</value>
System.Text.Json (1)
System\Text\Json\Serialization\JsonConverter.cs (1)
183return state.FlushThreshold > 0 && pipeWriter.UnflushedBytes > state.FlushThreshold - writer.BytesPending;