2 writes to ClientState
System.Web (2)
UI\HiddenFieldPageStatePersister.cs (1)
53Page.ClientState = Util.SerializeWithAssert(StateFormatter2, new Pair(ViewState, ControlState), Purpose.WebForms_HiddenFieldPageStatePersister_ClientState);
UI\SessionPageStatePersister.cs (1)
139Page.ClientState = Util.SerializeWithAssert(StateFormatter2, new Pair(requiresControlStateInSession, clientData), Purpose.WebForms_SessionPageStatePersister_ClientState);
6 references to ClientState
System.Web (6)
UI\ClientScriptManager.cs (2)
1281_outboundEvents.Add(null, _clientScriptManager._owner.ClientState); 1361string stateString = _clientScriptManager._owner.ClientState;
UI\Page.cs (3)
2190string state = ClientState; 2201int numFullChunks = ClientState.Length / MaxPageStateFieldLength; 2224if (ClientState != null) {
UI\PageAdapter.cs (1)
42return Page.ClientState;