7 overrides of CreateContentReadStream
System.Net.Http (7)
System\Net\Http\ByteArrayContent.cs (1)
61protected override Stream CreateContentReadStream(CancellationToken cancellationToken) =>
System\Net\Http\EmptyContent.cs (1)
29protected override Stream CreateContentReadStream(CancellationToken cancellationToken) =>
System\Net\Http\MultipartContent.cs (1)
233protected override Stream CreateContentReadStream(CancellationToken cancellationToken)
System\Net\Http\ReadOnlyMemoryContent.cs (1)
34protected override Stream CreateContentReadStream(CancellationToken cancellationToken) =>
System\Net\Http\SocketsHttpHandler\DecompressionHandler.cs (1)
154protected override Stream CreateContentReadStream(CancellationToken cancellationToken)
System\Net\Http\SocketsHttpHandler\HttpConnectionResponseContent.cs (1)
72protected sealed override Stream CreateContentReadStream(CancellationToken cancellationToken) =>
System\Net\Http\StreamContent.cs (1)
100protected override Stream CreateContentReadStream(CancellationToken cancellationToken)
3 references to CreateContentReadStream
System.Net.Http (3)
System\Net\Http\HttpContent.cs (2)
256CreateContentReadStream(cancellationToken); 544/// The <see cref="CreateContentReadStream(CancellationToken)"/> method buffers the content to a memory stream.
System\Net\Http\MultipartContent.cs (1)
288return async ? await base.CreateContentReadStreamAsync().ConfigureAwait(false) : base.CreateContentReadStream(cancellationToken);