4 instantiations of HttpServerVarsCollectionEntry
System.Web (4)
HttpServerVarsCollection.cs (4)
57BaseAdd(name, new HttpServerVarsCollectionEntry(name, value)); 62BaseAdd(name, new HttpServerVarsCollectionEntry(name, var)); 273_unsyncedEntries.Add(new HttpServerVarsCollectionEntry(name, value)); 299BaseSet(name, new HttpServerVarsCollectionEntry(name, value));
9 references to HttpServerVarsCollectionEntry
System.Web (9)
HttpServerVarsCollection.cs (9)
28private List<HttpServerVarsCollectionEntry> _unsyncedEntries; 66HttpServerVarsCollectionEntry entry = (HttpServerVarsCollectionEntry)e; 82foreach (var entry in _unsyncedEntries) { 83var existingEntry = (HttpServerVarsCollectionEntry)BaseGet(entry.Name); 270_unsyncedEntries = new List<HttpServerVarsCollectionEntry>(); 292HttpServerVarsCollectionEntry entry = (HttpServerVarsCollectionEntry) BaseGet(name);