Example #1
0
 public ResponseCookiesWrapper(HttpContext context, CookiePolicyOptions options, IResponseCookiesFeature feature, ILogger logger)
 {
     Context = context;
     Feature = feature;
     Options = options;
     _logger = logger;
 }
Example #2
0
 public CookiesWrapper(HttpContext context, CookiePolicyOptions options, IResponseCookiesFeature feature)
 {
     Context = context;
     Feature = feature;
     Policy  = options;
 }
Example #3
0
 public CookiesWrapperFeature(HttpContext context, CookiePolicyOptions options, IResponseCookiesFeature feature)
 {
     Wrapper = new CookiesWrapper(context, options, feature);
 }