1 instantiation of ClientWebSocketOptions
System.Net.WebSockets.Client (1)
System\Net\WebSockets\WebSocketHandle.Browser.cs (1)
23public static ClientWebSocketOptions CreateDefaultOptions() => new ClientWebSocketOptions();
11 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
netstandard (1)
netstandard.cs (1)
1309[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.WebSockets.ClientWebSocketOptions))]
System (1)
src\runtime\src\libraries\shims\System\ref\System.cs (1)
801[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.WebSockets.ClientWebSocketOptions))]
System.Net.WebSockets.Client (5)
System\Net\WebSockets\ClientWebSocket.cs (3)
23public ClientWebSocketOptions Options { get; } 55/// Gets the upgrade response status code if <see cref="ClientWebSocketOptions.CollectHttpResponseDetails" /> is set. 60/// Gets the upgrade response headers if <see cref="ClientWebSocketOptions.CollectHttpResponseDetails" /> is set.
System\Net\WebSockets\WebSocketHandle.Browser.cs (2)
23public static ClientWebSocketOptions CreateDefaultOptions() => new ClientWebSocketOptions(); 37public Task ConnectAsync(Uri uri, HttpMessageInvoker? _ /*invoker*/, CancellationToken cancellationToken, ClientWebSocketOptions options)