Should be simple, but whatever I try returns null:
const string key = "system.web";
var sectionTry1 = WebConfigurationManager.GetSection(key);
var sectionTry2 = ConfigurationManager.GetSection(key);
I'm sure I have done this before.
I am using MVC if this makes a difference.