public void Set(string key, object value) => Context.Set(key, value);
 public void Clear() => Context.Clear();
 public object Get(string key) => Context.GetObject(key);
 public void Remove(string key) => Context.Remove(key);
 public bool Contains(string key) => Context.Contains(key);