1 instantiation of ClientWebSocketOptions
System.Net.WebSockets.Client (1)
System\Net\WebSockets\WebSocketHandle.Managed.cs (1)
35public static ClientWebSocketOptions CreateDefaultOptions() => new ClientWebSocketOptions() { Proxy = DefaultWebProxy.Instance };
17 references to ClientWebSocketOptions
Microsoft.AspNetCore.Http.Connections.Client (4)
HttpConnectionOptions.cs (4)
30private Action<ClientWebSocketOptions>? _webSocketConfiguration; 254/// Gets or sets a delegate that will be invoked with the <see cref="ClientWebSocketOptions"/> object used 261/// If <c>ClientWebSocketOptions.HttpVersion</c> is set to <c>2.0</c> or higher, some options like <see cref="ClientWebSocketOptions.Cookies"/> will not be applied. Instead use <see cref="Cookies"/> or the corresponding option on <see cref="HttpConnectionOptions"/>. 264public Action<ClientWebSocketOptions>? WebSocketConfiguration
Microsoft.AspNetCore.SignalR.Client.Tests (1)
HttpConnectionFactoryTests.cs (1)
82Action<ClientWebSocketOptions> webSocketConfig = options => { };
Microsoft.AspNetCore.SignalR.Tests (1)
WebSocketsTransportTests.cs (1)
30ClientWebSocketOptions webSocketsOptions = null;
netstandard (1)
netstandard.cs (1)
1309[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.WebSockets.ClientWebSocketOptions))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
801[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.WebSockets.ClientWebSocketOptions))]
System.Net.WebSockets.Client (9)
System\Net\WebSockets\ClientWebSocket.cs (3)
24public ClientWebSocketOptions Options { get; } 56/// Gets the upgrade response status code if <see cref="ClientWebSocketOptions.CollectHttpResponseDetails" /> is set. 61/// Gets the upgrade response headers if <see cref="ClientWebSocketOptions.CollectHttpResponseDetails" /> is set.
System\Net\WebSockets\ClientWebSocketOptions.cs (2)
60/// <summary>Gets or sets the policy that determines how <see cref="ClientWebSocketOptions.HttpVersion" /> is interpreted and how the final HTTP version is negotiated with the server.</summary> 177/// If <see cref="ClientWebSocketOptions.KeepAliveTimeout"/> is set, then PING messages are sent and peer's PONG responses are expected, otherwise,
System\Net\WebSockets\WebSocketHandle.Managed.cs (4)
35public static ClientWebSocketOptions CreateDefaultOptions() => new ClientWebSocketOptions() { Proxy = DefaultWebProxy.Instance }; 49public async Task ConnectAsync(Uri uri, HttpMessageInvoker? invoker, CancellationToken cancellationToken, ClientWebSocketOptions options) 248private static HttpMessageInvoker SetupInvoker(ClientWebSocketOptions options, out bool disposeInvoker) 380private static string? AddWebSocketHeaders(HttpRequestMessage request, ClientWebSocketOptions options)