diff --git a/src/Microsoft.AspNetCore.Session/SessionOptions.cs b/src/Microsoft.AspNetCore.Session/SessionOptions.cs
index b280bec..569dd5c 100644
--- a/src/Microsoft.AspNetCore.Session/SessionOptions.cs
+++ b/src/Microsoft.AspNetCore.Session/SessionOptions.cs
@@ -83,18 +83,6 @@ public CookieBuilder Cookie
[Obsolete("This property is obsolete and will be removed in a future version. The recommended alternative is " + nameof(Cookie) + "." + nameof(CookieBuilder.HttpOnly) + ".")]
public bool CookieHttpOnly { get => Cookie.HttpOnly; set => Cookie.HttpOnly = value; }
- ///
- ///
- /// This property is obsolete and will be removed in a future version. The recommended alternative is on .
- ///
- ///
- /// Determines if the browser should allow the cookie to be attached to same-site or cross-site requests. The
- /// default is Lax, which means the cookie is allowed to be attached to same-site and safe cross-site requests.
- ///
- ///
- [Obsolete("This property is obsolete and will be removed in a future version. The recommended alternative is " + nameof(Cookie) + "." + nameof(CookieBuilder.SameSite) + ".")]
- public SameSiteMode SameSiteMode { get => Cookie.SameSite; set => Cookie.SameSite = value; }
-
///
///
/// This property is obsolete and will be removed in a future version. The recommended alternative is on .