On a webforms .aspx
page system, the master page has a few properties auto initialized, as such
public bool MyProp => bool.Parse(Service.Settings["YorN"]);
Profiling page load, I see that between the PreRender
event, and the initialization of one of the properties there is a large gap.
Where can I look to figure out the delay? What runs between the two?