3 writes to ClientMaxWindowBits
Microsoft.AspNetCore.WebSockets (1)
HandshakeHelpers.cs (1)
162
parsedOptions.
ClientMaxWindowBits
= clientMaxWindowBits ?? 15;
Microsoft.AspNetCore.WebSockets.Tests (1)
WebSocketCompressionMiddlewareTests.cs (1)
140
ClientMaxWindowBits
= 11,
System.Net.WebSockets.Client (1)
System\Net\WebSockets\WebSocketHandle.Managed.cs (1)
331
options.
ClientMaxWindowBits
= ParseWindowBits(value);
8 references to ClientMaxWindowBits
Microsoft.AspNetCore.WebSockets (2)
HandshakeHelpers.cs (2)
172
var len = (parsedOptions.
ClientMaxWindowBits
> 9) ? 2 : 1;
174
var ret = parsedOptions.
ClientMaxWindowBits
.TryFormat(span, out var written, provider: CultureInfo.InvariantCulture);
System.Net.WebSockets.Client (6)
System\Net\WebSockets\WebSocketHandle.Managed.cs (6)
362
if (options.
ClientMaxWindowBits
> original.
ClientMaxWindowBits
)
365
original.
ClientMaxWindowBits
, options.
ClientMaxWindowBits
));
415
if (options.
ClientMaxWindowBits
!= WebSocketValidate.MaxDeflateWindowBits)
417
builder.Append(CultureInfo.InvariantCulture, $"{ClientWebSocketDeflateConstants.ClientMaxWindowBits}={options.
ClientMaxWindowBits
}");