1 write to bag
System.Web (1)
UI\StateBag.cs (1)
59
bag
= CreateBag();
17 references to bag
System.Web (17)
UI\StateBag.cs (17)
73
return
bag
.Count;
87
return
bag
.Keys;
101
return
bag
.Values;
128
StateItem item =
bag
[key] as StateItem;
164
StateItem item =
bag
[key] as StateItem;
169
bag
.Add(key,item);
174
bag
.Remove(key);
203
bag
.Clear();
215
return
bag
.GetEnumerator();
228
StateItem item =
bag
[key] as StateItem;
293
bag
.Remove(key);
320
if (
bag
.Count != 0) {
321
IDictionaryEnumerator e =
bag
.GetEnumerator();
346
if (
bag
.Count != 0) {
347
foreach (StateItem item in
bag
.Values) {
362
StateItem item =
bag
[key] as StateItem;
394
return
bag
.Contains((string) key);