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