4 writes to ControlState
System.Web (4)
UI\HiddenFieldPageStatePersister.cs (1)
34ControlState = combinedState.Second;
UI\Page.cs (1)
5547persister.ControlState = pair.First;
UI\SessionPageStatePersister.cs (2)
60ControlState = pair.Second; 70ControlState = combinedState.Second;
8 references to ControlState
System.Web (8)
UI\HiddenFieldPageStatePersister.cs (2)
52if (ViewState != null || ControlState != null) { 53Page.ClientState = Util.SerializeWithAssert(StateFormatter2, new Pair(ViewState, ControlState), Purpose.WebForms_HiddenFieldPageStatePersister_ClientState);
UI\Page.cs (3)
2114return new Pair(persister.ControlState, persister.ViewState); 2912IDictionary controlState = (IDictionary)PageStatePersister.ControlState; 2968IDictionary controlState = (IDictionary)PageStatePersister.ControlState;
UI\SessionPageStatePersister.cs (3)
98if ((ControlState != null) || 108state = new Pair(ViewState, ControlState); 114clientData = new Pair(sessionViewStateID, ControlState);