From ae450b1acf80b059f471e4ce394a7ed4f6b82e56 Mon Sep 17 00:00:00 2001 From: claudia Date: Sun, 24 Jan 2021 21:20:17 -0300 Subject: [PATCH] Add property SameSite for cookie datatype --- dotnet/src/dotnetframework/GxClasses/Core/Web/GxHttpServer.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dotnet/src/dotnetframework/GxClasses/Core/Web/GxHttpServer.cs b/dotnet/src/dotnetframework/GxClasses/Core/Web/GxHttpServer.cs index 76992c0e9..523136593 100644 --- a/dotnet/src/dotnetframework/GxClasses/Core/Web/GxHttpServer.cs +++ b/dotnet/src/dotnetframework/GxClasses/Core/Web/GxHttpServer.cs @@ -64,6 +64,8 @@ public DateTime ExpirationDate get { return _ExpirationDate; } } + public string SameSite { get; set; } + public String Domain { set { _Domain = value; }