| 123456789101112131415161718192021 |
- commit ce6934126513f1da9e46b8d695fedb2ddf261ae1
- Author: Chris Ross (ASP.NET) <[email protected]>
- Date: Fri Jan 5 12:04:50 2018 -0800
- Add ITrackingConsentFeature.CreateConsentCookie
- diff --git a/src/Microsoft.AspNetCore.Http.Features/ITrackingConsentFeature.cs b/src/Microsoft.AspNetCore.Http.Features/ITrackingConsentFeature.cs
- index 9e5108db432..e7fbeaeaf33 100644
- --- a/src/Microsoft.AspNetCore.Http.Features/ITrackingConsentFeature.cs
- +++ b/src/Microsoft.AspNetCore.Http.Features/ITrackingConsentFeature.cs
- @@ -35,5 +35,10 @@ namespace Microsoft.AspNetCore.Http.Features
- /// this will also withdraw consent for future requests.
- /// </summary>
- void WithdrawConsent();
- +
- + /// <summary>
- + /// Creates a consent cookie for use when granting consent from a javascript client.
- + /// </summary>
- + string CreateConsentCookie();
- }
- }
|