7 overrides of AllowDuplex
System.Net.Http (7)
System\Net\Http\ByteArrayContent.cs (1)
73
internal override bool
AllowDuplex
=> false;
System\Net\Http\EmptyContent.cs (1)
41
internal override bool
AllowDuplex
=> false;
System\Net\Http\MultipartContent.cs (1)
356
internal override bool
AllowDuplex
=> false;
System\Net\Http\ReadOnlyMemoryContent.cs (1)
43
internal override bool
AllowDuplex
=> false;
System\Net\Http\SocketsHttpHandler\DecompressionHandler.cs (1)
197
internal override bool
AllowDuplex
=> false;
System\Net\Http\SocketsHttpHandler\HttpConnectionResponseContent.cs (1)
81
internal override bool
AllowDuplex
=> false;
System\Net\Http\StreamContent.cs (1)
117
internal override bool
AllowDuplex
=> false;
3 references to AllowDuplex
System.Net.Http (3)
System\Net\Http\SocketsHttpHandler\Http2Connection.cs (1)
1996
bool duplex = request.Content != null && request.Content.
AllowDuplex
;
System\Net\Http\SocketsHttpHandler\Http3RequestStream.cs (2)
147
bool duplex = _request.Content != null && _request.Content.
AllowDuplex
;
188
_request.Content?.
AllowDuplex
!= true ||