53 writes to _current
Microsoft.AspNetCore.Server.Kestrel.Core (53)
Internal\Http\HttpHeaders.Generated.cs (52)
8404
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Accept, _collection._headers._Accept);
8409
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Connection, _collection._headers._Connection);
8414
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Host, _collection._headers._Host);
8419
_current
= new KeyValuePair<string, StringValues>(HeaderNames.UserAgent, _collection._headers._UserAgent);
8424
_current
= new KeyValuePair<string, StringValues>(InternalHeaderNames.Authority, _collection._headers._Authority);
8429
_current
= new KeyValuePair<string, StringValues>(InternalHeaderNames.Method, _collection._headers._Method);
8434
_current
= new KeyValuePair<string, StringValues>(InternalHeaderNames.Path, _collection._headers._Path);
8439
_current
= new KeyValuePair<string, StringValues>(InternalHeaderNames.Protocol, _collection._headers._Protocol);
8444
_current
= new KeyValuePair<string, StringValues>(InternalHeaderNames.Scheme, _collection._headers._Scheme);
8449
_current
= new KeyValuePair<string, StringValues>(HeaderNames.AcceptCharset, _collection._headers._AcceptCharset);
8454
_current
= new KeyValuePair<string, StringValues>(HeaderNames.AcceptEncoding, _collection._headers._AcceptEncoding);
8459
_current
= new KeyValuePair<string, StringValues>(HeaderNames.AcceptLanguage, _collection._headers._AcceptLanguage);
8464
_current
= new KeyValuePair<string, StringValues>(HeaderNames.AccessControlRequestHeaders, _collection._headers._AccessControlRequestHeaders);
8469
_current
= new KeyValuePair<string, StringValues>(HeaderNames.AccessControlRequestMethod, _collection._headers._AccessControlRequestMethod);
8474
_current
= new KeyValuePair<string, StringValues>(InternalHeaderNames.AltUsed, _collection._headers._AltUsed);
8479
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Authorization, _collection._headers._Authorization);
8484
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Baggage, _collection._headers._Baggage);
8489
_current
= new KeyValuePair<string, StringValues>(HeaderNames.CacheControl, _collection._headers._CacheControl);
8494
_current
= new KeyValuePair<string, StringValues>(HeaderNames.ContentType, _collection._headers._ContentType);
8499
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Cookie, _collection._headers._Cookie);
8504
_current
= new KeyValuePair<string, StringValues>(HeaderNames.CorrelationContext, _collection._headers._CorrelationContext);
8509
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Date, _collection._headers._Date);
8514
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Expect, _collection._headers._Expect);
8519
_current
= new KeyValuePair<string, StringValues>(HeaderNames.From, _collection._headers._From);
8524
_current
= new KeyValuePair<string, StringValues>(HeaderNames.GrpcAcceptEncoding, _collection._headers._GrpcAcceptEncoding);
8529
_current
= new KeyValuePair<string, StringValues>(HeaderNames.GrpcEncoding, _collection._headers._GrpcEncoding);
8534
_current
= new KeyValuePair<string, StringValues>(HeaderNames.GrpcTimeout, _collection._headers._GrpcTimeout);
8539
_current
= new KeyValuePair<string, StringValues>(HeaderNames.IfMatch, _collection._headers._IfMatch);
8544
_current
= new KeyValuePair<string, StringValues>(HeaderNames.IfModifiedSince, _collection._headers._IfModifiedSince);
8549
_current
= new KeyValuePair<string, StringValues>(HeaderNames.IfNoneMatch, _collection._headers._IfNoneMatch);
8554
_current
= new KeyValuePair<string, StringValues>(HeaderNames.IfRange, _collection._headers._IfRange);
8559
_current
= new KeyValuePair<string, StringValues>(HeaderNames.IfUnmodifiedSince, _collection._headers._IfUnmodifiedSince);
8564
_current
= new KeyValuePair<string, StringValues>(HeaderNames.KeepAlive, _collection._headers._KeepAlive);
8569
_current
= new KeyValuePair<string, StringValues>(HeaderNames.MaxForwards, _collection._headers._MaxForwards);
8574
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Origin, _collection._headers._Origin);
8579
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Pragma, _collection._headers._Pragma);
8584
_current
= new KeyValuePair<string, StringValues>(HeaderNames.ProxyAuthorization, _collection._headers._ProxyAuthorization);
8589
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Range, _collection._headers._Range);
8594
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Referer, _collection._headers._Referer);
8599
_current
= new KeyValuePair<string, StringValues>(HeaderNames.RequestId, _collection._headers._RequestId);
8604
_current
= new KeyValuePair<string, StringValues>(HeaderNames.TE, _collection._headers._TE);
8609
_current
= new KeyValuePair<string, StringValues>(HeaderNames.TraceParent, _collection._headers._TraceParent);
8614
_current
= new KeyValuePair<string, StringValues>(HeaderNames.TraceState, _collection._headers._TraceState);
8619
_current
= new KeyValuePair<string, StringValues>(HeaderNames.TransferEncoding, _collection._headers._TransferEncoding);
8624
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Translate, _collection._headers._Translate);
8629
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Upgrade, _collection._headers._Upgrade);
8634
_current
= new KeyValuePair<string, StringValues>(HeaderNames.UpgradeInsecureRequests, _collection._headers._UpgradeInsecureRequests);
8639
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Via, _collection._headers._Via);
8644
_current
= new KeyValuePair<string, StringValues>(HeaderNames.Warning, _collection._headers._Warning);
8649
_current
= new KeyValuePair<string, StringValues>(HeaderNames.ContentLength, HeaderUtilities.FormatNonNegativeInt64(_collection._contentLength.GetValueOrDefault()));
8655
_current
= default(KeyValuePair<string, StringValues>);
8658
_current
= _unknownEnumerator.Current;
Internal\Http\HttpRequestHeaders.cs (1)
247
_current
= default;
2 references to _current
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http\HttpRequestHeaders.cs (2)
254
public readonly KeyValuePair<string, StringValues> Current =>
_current
;
256
readonly object IEnumerator.Current =>
_current
;