5 writes to _initialState
System.Web.Extensions (5)
UI\ScriptManager.cs (5)
1198_initialState = new Hashtable(StringComparer.Ordinal); 1203_initialState = (Hashtable)persister.Deserialize(serverState); 1212_initialState = new Hashtable(state.Count, StringComparer.Ordinal); 1327_initialState = null; 1392_initialState = new Hashtable(StringComparer.Ordinal);
15 references to _initialState
System.Web.Extensions (15)
UI\ScriptManager.cs (15)
1172return persister.Serialize(_initialState); 1174else if (_initialState == null) { 1180foreach (DictionaryEntry kvp in _initialState) { 1206foreach (DictionaryEntry entry in _initialState) { 1215_initialState.Add(key, state[key]); 1326if ((_initialState != null) && (_initialState.Count == 0)) { 1391if (_initialState == null) { 2009if ((_initialState != null) && (_initialState.Count != 0)) { 2068if (_initialState.ContainsKey(key)) { 2069_initialState.Remove(key); 2073if (_initialState.ContainsKey(key)) { 2074_initialState[key] = value; 2077_initialState.Add(key, value);