5 writes to UseCookies
Microsoft.Extensions.Http (1)
DependencyInjection\SocketsHttpHandlerBuilderExtensions.cs (1)
93
handler.
UseCookies
= config.UseCookies.Value;
System.Net.Http (1)
System\Net\Http\HttpClientHandler.cs (1)
122
set => _underlyingHandler.
UseCookies
= value;
System.Net.Requests (1)
System\Net\HttpWebRequest.cs (1)
1694
handler.
UseCookies
= false;
System.Net.WebSockets.Client (2)
System\Net\WebSockets\WebSocketHandle.Managed.cs (2)
266
UseCookies
= false,
283
handler.
UseCookies
= options.Cookies != null;
3 references to UseCookies
Microsoft.Extensions.Http (1)
DependencyInjection\SocketsHttpHandlerBuilderExtensions.cs (1)
199
UseCookies = ParseBool(config[nameof(SocketsHttpHandler.
UseCookies
)]),
System.Net.Http (1)
System\Net\Http\HttpClientHandler.cs (1)
121
get => _underlyingHandler.
UseCookies
;
System.Net.Requests (1)
System\Net\HttpWebRequest.cs (1)
1690
Debug.Assert(handler.
UseCookies
); // Default of handler.UseCookies is true.