1 write to _owinEntries
Microsoft.AspNetCore.Owin (1)
OwinEnvironment.cs (1)
64
_owinEntries
= new(context);
12 references to _owinEntries
Microsoft.AspNetCore.Owin (12)
OwinEnvironment.cs (12)
71
public IDictionary<string, FeatureMap> FeatureMaps =>
_owinEntries
.GetFeatureMaps();
75
if (
_owinEntries
.ContainsKey(key))
85
=>
_owinEntries
92
if (
_owinEntries
.Remove(key))
101
if (
_owinEntries
.TryGetValue(key, out var entry) && entry.TryGet(_context, out value))
119
if (
_owinEntries
.TryGetValue(key, out entry) && entry.TryGet(_context, out value))
132
if (
_owinEntries
.TryGetValue(key, out entry))
140
_owinEntries
.Remove(key);
168
_owinEntries
.Clear();
181
if (arrayIndex +
_owinEntries
.Count + _context.Items.Count > array.Length)
195
get { return
_owinEntries
.Count + _context.Items.Count; }
211
foreach (var entryPair in
_owinEntries
)