Custom Session Provider GetItem not get called when accessing data from Session

I am trying to wirite a custom session provider in .net framework 4.8. What I do not understand, and my problem is that when I try to access data like
Session[key] I imagine that the session provider GetItem should got called, but that’s not happening.

Here is my session provider prototype where I was trying to do this:

using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Configuration;
using System.IO;
using System.Linq;
using System.Net;
using System.Threading;
using System.Web;
using System.Web.SessionState;

namespace MVC
{
    public class PPMSesseionStateProvider : SessionStateStoreProviderBase
    {
        private string baseURl = string.Empty;

        public override void Initialize(string name, NameValueCollection config)
        {
            if (String.IsNullOrEmpty(config["description"]))
            {
                config.Remove("description");
                config.Add("description", "Custom PPM Session State Store provider");
            }

            baseURl = ConfigurationManager.AppSettings["baseURL"];

            base.Initialize(name, config);
        }

        public override SessionStateStoreData CreateNewStoreData(HttpContext context, int timeout)
        {
            return new SessionStateStoreData(new SessionStateItemCollection(), SessionStateUtility.GetSessionStaticObjects(context), timeout);
        }

        public override void CreateUninitializedItem(HttpContext context, string id, int timeout)
        {}

        public override void Dispose()
        {}

        public override void EndRequest(HttpContext context)
        {}

        public override SessionStateStoreData GetItem(HttpContext context, string id, out bool locked, out TimeSpan lockAge, out object lockId, out SessionStateActions actions)
        {
            //SAME AS GETITEM
            var request = WebRequest.Create($"https://localhost:5000/SessionTest/get/asdfrgfds");
            request.ContentType = "application/json; charset=utf-8";
            request.Method = "GET";
            request.Headers.Add("PPMSessionHeader", "12345");
            var sessionResponse = (HttpWebResponse)request.GetResponse();


            // Initial values for return value and out parameters.
            SessionStateStoreData item = null;
            lockAge = TimeSpan.Zero;
            lockId = null;
            locked = false;
            actions = 0;

            var response = string.Empty; //get the reposnse form the server (look for the object type in the server) and create

            SessionStateItemCollection sessionItems = new SessionStateItemCollection();

            if (sessionResponse.ContentLength > 0)
            {
                var reader = new BinaryReader(sessionResponse.GetResponseStream());
                sessionItems = SessionStateItemCollection.Deserialize(reader);
            }

            return new SessionStateStoreData(sessionItems, SessionStateUtility.GetSessionStaticObjects(context), 1000);
        }

        public override SessionStateStoreData GetItemExclusive(HttpContext context, string id, out bool locked, out TimeSpan lockAge, out object lockId, out SessionStateActions actions)
        {
            //SAME AS GETITEM
            var request = WebRequest.Create($"https://localhost:5000/SessionTest/get/asdfrgfds");
            request.ContentType = "application/json; charset=utf-8";
            request.Method = "GET";
            request.Headers.Add("PPMSessionHeader", "12345");
            var sessionResponse = (HttpWebResponse)request.GetResponse();


            // Initial values for return value and out parameters.
            SessionStateStoreData item = null;
            lockAge = TimeSpan.Zero;
            lockId = null;
            locked = false;
            actions = 0;

            var response = string.Empty; //get the reposnse form the server (look for the object type in the server) and create

            SessionStateItemCollection sessionItems = new SessionStateItemCollection();

            if (sessionResponse.ContentLength > 0)
            {
                var reader = new BinaryReader(sessionResponse.GetResponseStream());
                sessionItems = SessionStateItemCollection.Deserialize(reader);
            }

            return new SessionStateStoreData(sessionItems, SessionStateUtility.GetSessionStaticObjects(context), 1000);
        }

        public override void InitializeRequest(HttpContext context)
        {}

        public override void ReleaseItemExclusive(HttpContext context, string id, object lockId)
        {}

        public override void RemoveItem(HttpContext context, string id, object lockId, SessionStateStoreData item)
        {
           //send request to remove item from session
        }

        public override void ResetItemTimeout(HttpContext context, string id)
        {}

        public override void SetAndReleaseItemExclusive(HttpContext context, string id, SessionStateStoreData item, object lockId, bool newItem)
        {
            //send the key and the value to the API
        }

        public override bool SetItemExpireCallback(SessionStateItemExpireCallback expireCallback) => false;
    }
}

The controller action where I test this:

public ActionResult Index()
{
    string key = "ProductID:1001";
    var customObject = Session[key]; // at this line nothing is triggered !!!
    Session.Add(key, "tralalalala");


    return View();
}

thnx

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật