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