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