2 writes to ClientState
System.Web (2)
UI\HiddenFieldPageStatePersister.cs (1)
53
Page.
ClientState
= Util.SerializeWithAssert(StateFormatter2, new Pair(ViewState, ControlState), Purpose.WebForms_HiddenFieldPageStatePersister_ClientState);
UI\SessionPageStatePersister.cs (1)
139
Page.
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
);
1361
string stateString = _clientScriptManager._owner.
ClientState
;
UI\Page.cs (3)
2190
string state =
ClientState
;
2201
int numFullChunks =
ClientState
.Length / MaxPageStateFieldLength;
2224
if (
ClientState
!= null) {
UI\PageAdapter.cs (1)
42
return Page.
ClientState
;