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