42 writes to _current
Microsoft.AspNetCore.Server.Kestrel.Core (42)
Internal\Http\HttpHeaders.Generated.cs (41)
15254
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Connection, _collection._headers._Connection);
15260
_current
= new KeyValuePair<string, StringValues>(HeaderNames.ContentType, _collection._headers._ContentType);
15266
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Date, _collection._headers._Date);
15272
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Server, _collection._headers._Server);
15278
_current
= new KeyValuePair<string, StringValues>(HeaderNames.AcceptRanges, _collection._headers._AcceptRanges);
15284
_current
= new KeyValuePair<string, StringValues>(HeaderNames.AccessControlAllowCredentials, _collection._headers._AccessControlAllowCredentials);
15290
_current
= new KeyValuePair<string, StringValues>(HeaderNames.AccessControlAllowHeaders, _collection._headers._AccessControlAllowHeaders);
15296
_current
= new KeyValuePair<string, StringValues>(HeaderNames.AccessControlAllowMethods, _collection._headers._AccessControlAllowMethods);
15302
_current
= new KeyValuePair<string, StringValues>(HeaderNames.AccessControlAllowOrigin, _collection._headers._AccessControlAllowOrigin);
15308
_current
= new KeyValuePair<string, StringValues>(HeaderNames.AccessControlExposeHeaders, _collection._headers._AccessControlExposeHeaders);
15314
_current
= new KeyValuePair<string, StringValues>(HeaderNames.AccessControlMaxAge, _collection._headers._AccessControlMaxAge);
15320
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Age, _collection._headers._Age);
15326
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Allow, _collection._headers._Allow);
15332
_current
= new KeyValuePair<string, StringValues>(HeaderNames.AltSvc, _collection._headers._AltSvc);
15338
_current
= new KeyValuePair<string, StringValues>(HeaderNames.CacheControl, _collection._headers._CacheControl);
15344
_current
= new KeyValuePair<string, StringValues>(HeaderNames.ContentEncoding, _collection._headers._ContentEncoding);
15350
_current
= new KeyValuePair<string, StringValues>(HeaderNames.ContentLanguage, _collection._headers._ContentLanguage);
15356
_current
= new KeyValuePair<string, StringValues>(HeaderNames.ContentLocation, _collection._headers._ContentLocation);
15362
_current
= new KeyValuePair<string, StringValues>(HeaderNames.ContentMD5, _collection._headers._ContentMD5);
15368
_current
= new KeyValuePair<string, StringValues>(HeaderNames.ContentRange, _collection._headers._ContentRange);
15374
_current
= new KeyValuePair<string, StringValues>(HeaderNames.ETag, _collection._headers._ETag);
15380
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Expires, _collection._headers._Expires);
15386
_current
= new KeyValuePair<string, StringValues>(HeaderNames.GrpcEncoding, _collection._headers._GrpcEncoding);
15392
_current
= new KeyValuePair<string, StringValues>(HeaderNames.KeepAlive, _collection._headers._KeepAlive);
15398
_current
= new KeyValuePair<string, StringValues>(HeaderNames.LastModified, _collection._headers._LastModified);
15404
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Location, _collection._headers._Location);
15410
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Pragma, _collection._headers._Pragma);
15416
_current
= new KeyValuePair<string, StringValues>(HeaderNames.ProxyAuthenticate, _collection._headers._ProxyAuthenticate);
15422
_current
= new KeyValuePair<string, StringValues>(HeaderNames.ProxyConnection, _collection._headers._ProxyConnection);
15428
_current
= new KeyValuePair<string, StringValues>(HeaderNames.RetryAfter, _collection._headers._RetryAfter);
15434
_current
= new KeyValuePair<string, StringValues>(HeaderNames.SetCookie, _collection._headers._SetCookie);
15440
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Trailer, _collection._headers._Trailer);
15446
_current
= new KeyValuePair<string, StringValues>(HeaderNames.TransferEncoding, _collection._headers._TransferEncoding);
15452
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Upgrade, _collection._headers._Upgrade);
15458
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Vary, _collection._headers._Vary);
15464
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Via, _collection._headers._Via);
15470
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Warning, _collection._headers._Warning);
15476
_current
= new KeyValuePair<string, StringValues>(HeaderNames.WWWAuthenticate, _collection._headers._WWWAuthenticate);
15482
_current
= new KeyValuePair<string, StringValues>(HeaderNames.ContentLength, HeaderUtilities.FormatNonNegativeInt64(_collection._contentLength.GetValueOrDefault()));
15489
_current
= default(KeyValuePair<string, StringValues>);
15493
_current
= _unknownEnumerator.Current;
Internal\Http\HttpResponseHeaders.cs (1)
155
_current
= default;
2 references to _current
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http\HttpResponseHeaders.cs (2)
163
public readonly KeyValuePair<string, StringValues> Current =>
_current
;
167
readonly object IEnumerator.Current =>
_current
;