1 instantiation of ChangeCookieAction
Microsoft.AspNetCore.Rewrite (1)
ApacheModRewrite\CookieActionFactory.cs (1)
64action = new ChangeCookieAction(value);
9 references to ChangeCookieAction
Microsoft.AspNetCore.Rewrite (5)
ApacheModRewrite\CookieActionFactory.cs (4)
13/// Creates a <see cref="ChangeCookieAction" /> <see href="https://httpd.apache.org/docs/current/rewrite/flags.html#flag_co" /> for details. 17public static ChangeCookieAction Create(string flagValue) 29ChangeCookieAction? action = null; 57private static void SetActionOption(string value, Fields tokenType, ref ChangeCookieAction? action)
ApacheModRewrite\RuleBuilder.cs (1)
179var action = CookieActionFactory.Create(flag);
Microsoft.AspNetCore.Rewrite.Tests (4)
ApacheModRewrite\CookieActionFactoryTest.cs (4)
13var cookie = CookieActionFactory.Create("NAME:VALUE:DOMAIN:1440:path:secure:httponly"); 27var action = CookieActionFactory.Create(";NAME;VALUE:WithColon;DOMAIN;1440;path;secure;httponly"); 41var action = CookieActionFactory.Create(";NAME;VALUE;DOMAIN;;;;httponly"); 61var action = CookieActionFactory.Create(flagValue);