11 instantiations of CookieContainer
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpChannelFactory.cs (1)
500_httpCookieContainerManager.CookieContainer = new CookieContainer();
Microsoft.AspNetCore.Http.Connections.Client (1)
HttpConnectionOptions.cs (1)
54_cookies = new CookieContainer();
Microsoft.AspNetCore.Http.Connections.Tests (1)
HttpConnectionDispatcherTests.cs (1)
3317var cookies = new CookieContainer();
Microsoft.AspNetCore.Mvc.Testing (1)
Handlers\CookieContainerHandler.cs (1)
20: this(new CookieContainer())
Microsoft.AspNetCore.SignalR.Client.FunctionalTests (1)
HubConnectionTests.cs (1)
1714var cookieJar = new System.Net.CookieContainer();
Microsoft.AspNetCore.SignalR.Client.Tests (1)
HttpConnectionFactoryTests.cs (1)
89{ $"{nameof(HttpConnectionOptions.Cookies)}", new CookieContainer() },
Microsoft.Maui.Controls.Compatibility (1)
iOS\Renderers\WkWebViewRenderer.cs (1)
346 CookieContainer extractCookies = new CookieContainer();
PresentationCore (2)
MS\Internal\AppModel\CookieHandler.cs (1)
40httpRequest.CookieContainer = new CookieContainer();
MS\Internal\IO\Packaging\ByteRangeDownloader.cs (1)
852private CookieContainer _cookieContainer = new CookieContainer(1);
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\HttpConnectionSettings.cs (1)
94_cookieContainer = new CookieContainer();
System\Net\Http\SocketsHttpHandler\SocketsHttpHandler.cs (1)
54get => _settings._cookieContainer ??= new CookieContainer();
40 references to CookieContainer
dotnet-svcutil-lib (4)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpCookieContainerManager.cs (2)
14private CookieContainer _cookieContainer; 19public CookieContainer CookieContainer
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\IHttpCookieContainerManager.cs (1)
18CookieContainer CookieContainer { get; set; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceModelHttpMessageHandler.cs (1)
22public CookieContainer CookieContainer
Microsoft.AspNetCore.Http.Connections.Client (2)
HttpConnectionOptions.cs (2)
26private CookieContainer _cookies; 151public CookieContainer Cookies
Microsoft.AspNetCore.Http.Connections.Tests (1)
HttpConnectionDispatcherTests.cs (1)
3317var cookies = new CookieContainer();
Microsoft.AspNetCore.Mvc.Testing (4)
Handlers\CookieContainerHandler.cs (4)
27/// <param name="cookieContainer">The <see cref="CookieContainer"/> to use for 30public CookieContainerHandler(CookieContainer cookieContainer) 36/// Gets the <see cref="CookieContainer"/> used to store and retrieve cookies. 38public CookieContainer Container { get; }
Microsoft.AspNetCore.SignalR.Client.FunctionalTests (1)
HubConnectionTests.cs (1)
1714var cookieJar = new System.Net.CookieContainer();
Microsoft.Maui (5)
Core\IWebView.cs (1)
19 CookieContainer Cookies { get; }
Handlers\WebView\WebViewHandler.iOS.cs (4)
184 var myCookieJar = VirtualView.Cookies; 202 var myCookieJar = VirtualView.Cookies; 254 var myCookieJar = VirtualView.Cookies; 312 var myCookieJar = VirtualView.Cookies;
Microsoft.Maui.Controls (3)
WebView\WebView.cs (3)
48 public static readonly BindableProperty CookiesProperty = BindableProperty.Create(nameof(Cookies), typeof(CookieContainer), typeof(WebView), null); 95 public CookieContainer Cookies 97 get { return (CookieContainer)GetValue(CookiesProperty); }
Microsoft.Maui.Controls.Compatibility (5)
iOS\Renderers\WkWebViewRenderer.cs (5)
247 var myCookieJar = WebView.Cookies; 346 CookieContainer extractCookies = new CookieContainer(); 381 var myCookieJar = WebView.Cookies; 415 var myCookieJar = WebView.Cookies; 466 var myCookieJar = WebView.Cookies;
netstandard (1)
netstandard.cs (1)
1075[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.CookieContainer))]
PresentationCore (1)
MS\Internal\IO\Packaging\ByteRangeDownloader.cs (1)
852private CookieContainer _cookieContainer = new CookieContainer(1);
System (1)
src\libraries\shims\System\ref\System.cs (1)
602[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.CookieContainer))]
System.Net (1)
System.Net.cs (1)
6[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.CookieContainer))]
System.Net.Http (4)
System\Net\Http\HttpClientHandler.cs (1)
126public CookieContainer CookieContainer
System\Net\Http\SocketsHttpHandler\CookieHelper.cs (1)
12public static void ProcessReceivedCookies(HttpResponseMessage response, CookieContainer cookieContainer)
System\Net\Http\SocketsHttpHandler\HttpConnectionSettings.cs (1)
23internal CookieContainer? _cookieContainer;
System\Net\Http\SocketsHttpHandler\SocketsHttpHandler.cs (1)
52public CookieContainer CookieContainer
System.Net.Http.WinHttpHandler (1)
artifacts\obj\System.Net.Http.WinHttpHandler\Debug\net10.0\System.Net.Http.WinHttpHandler.notsupported.cs (1)
30public System.Net.CookieContainer? CookieContainer { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_WinHttpHandler); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_WinHttpHandler); } }
System.Net.Requests (4)
System\Net\HttpWebRequest.cs (3)
44private CookieContainer? _cookieContainer; 126public readonly CookieContainer? CookieContainer; 863public virtual CookieContainer? CookieContainer
System\Net\HttpWebResponse.cs (1)
58internal HttpWebResponse(HttpResponseMessage _message, Uri requestUri, CookieContainer? cookieContainer)
System.Net.WebSockets.Client (2)
System\Net\WebSockets\ClientWebSocketOptions.cs (2)
22private CookieContainer? _cookies; 144public CookieContainer? Cookies