1 write to _entries
Microsoft.AspNetCore.Owin (1)
OwinEnvironment.cs (1)
50_entries = new Dictionary<string, FeatureMap>()
16 references to _entries
Microsoft.AspNetCore.Owin (16)
OwinEnvironment.cs (16)
106_entries[OwinConstants.CallCancelled] = new FeatureMap<IHttpRequestLifetimeFeature>(feature => feature.RequestAborted); 121_entries.Add(OwinConstants.CommonKeys.ClientCertificate, new FeatureMap<ITlsConnectionFeature>(feature => feature.ClientCertificate, 123_entries.Add(OwinConstants.CommonKeys.LoadClientCertAsync, new FeatureMap<ITlsConnectionFeature>( 129_entries.Add(OwinConstants.WebSocket.AcceptAlt, new FeatureMap<IHttpWebSocketFeature>(feature => new WebSocketAcceptAlt(feature.AcceptAsync))); 141get { return _entries; } 146if (_entries.ContainsKey(key)) 162return _entries.Where(pair => pair.Value.TryGet(_context, out _)) 169if (_entries.Remove(key)) 179if (_entries.TryGetValue(key, out entry) && entry.TryGet(_context, out value)) 197if (_entries.TryGetValue(key, out entry) && entry.TryGet(_context, out value)) 210if (_entries.TryGetValue(key, out entry)) 218_entries.Remove(key); 246_entries.Clear(); 259if (arrayIndex + _entries.Count + _context.Items.Count > array.Length) 273get { return _entries.Count + _context.Items.Count; } 289foreach (var entryPair in _entries)