13 instantiations of ChunkingCookieManager
Microsoft.AspNetCore.CookiePolicy.Test (13)
CookieChunkingTests.cs (13)
17
new
ChunkingCookieManager
() { ChunkSize = null }.AppendResponseCookie(context, "TestCookie", testString, new CookieOptions());
39
new
ChunkingCookieManager
() { ChunkSize = null }.AppendResponseCookie(context, "TestCookie", testString, options);
52
new
ChunkingCookieManager
() { ChunkSize = 44 }.AppendResponseCookie(context, "TestCookie", testString, new CookieOptions());
70
new
ChunkingCookieManager
() { ChunkSize = 63 }.AppendResponseCookie(context, "TestCookie", testString,
99
new
ChunkingCookieManager
() { ChunkSize = 31 }.AppendResponseCookie(context, "TestCookie", "ShortValue", new CookieOptions());
130
new
ChunkingCookieManager
() { ChunkSize = 31 }.AppendResponseCookie(context, "TestCookie", "abcdefghijklmnopqr", new CookieOptions());
161
string result = new
ChunkingCookieManager
().GetRequestCookie(context, "TestCookie");
182
Assert.Throws<FormatException>(() => new
ChunkingCookieManager
() { ThrowForPartialCookies = true }
202
string result = new
ChunkingCookieManager
() { ThrowForPartialCookies = false }.GetRequestCookie(context, "TestCookie");
213
new
ChunkingCookieManager
().DeleteCookie(context, "TestCookie", new CookieOptions() { Domain = "foo.com", Secure = true, Extensions = { "extension" } });
235
new
ChunkingCookieManager
().DeleteCookie(context, "TestCookie", new CookieOptions() { Domain = "foo.com", Secure = true });
253
new
ChunkingCookieManager
().DeleteCookie(context, "TestCookie", new CookieOptions() { Domain = "foo.com", Secure = true });
267
var chunkingCookieManager = new
ChunkingCookieManager
();
2 references to ChunkingCookieManager
Microsoft.AspNetCore.CookiePolicy.Test (2)
CookieChunkingTests.cs (1)
267
var
chunkingCookieManager = new ChunkingCookieManager();
src\Shared\ChunkingCookieManager\ChunkingCookieManager.cs (1)
46
/// Initializes a new instance of <see cref="
ChunkingCookieManager
"/>.