5 instantiations of IndexedString
System.Web (5)
UI\ObjectStateFormatter.cs (2)
431return new IndexedString(_stringList[tableIndex]); 439return new IndexedString(s);
UI\StateBag.cs (1)
329data.Add(new IndexedString((string)e.Key));
UI\WebParts\BlobPersonalizationState.cs (2)
1053items.Add(new IndexedString((string)propertyEntry.Key)); 1065items.Add(new IndexedString((string)customPropertyEntry.Key));
7 references to IndexedString
System.Web (7)
UI\ObjectStateFormatter.cs (4)
423private IndexedString DeserializeIndexedString(SerializerBinaryReader reader, byte token) { 943if (value is IndexedString) { 944Debug.Assert(((IndexedString)value).Value != null); 945SerializeIndexedString(writer, ((IndexedString)value).Value);
UI\StateBag.cs (1)
261string key = ((IndexedString)data[i]).Value;
UI\WebParts\BlobPersonalizationState.cs (2)
518string propertyName = ((IndexedString)items[offset++]).Value; 530string propertyName = ((IndexedString)items[offset++]).Value;