1 implementation of IHttp2StreamIdFeature
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http2\Http2Stream.FeatureCollection.cs (1)
13
internal partial class Http2Stream :
IHttp2StreamIdFeature
,
10 references to IHttp2StreamIdFeature
Microsoft.AspNetCore.Server.Kestrel.Core (10)
Internal\Http\HttpProtocol.Generated.cs (9)
73
internal protected
IHttp2StreamIdFeature
? _currentIHttp2StreamIdFeature;
296
else if (key == typeof(
IHttp2StreamIdFeature
))
448
else if (key == typeof(
IHttp2StreamIdFeature
))
450
_currentIHttp2StreamIdFeature = (
IHttp2StreamIdFeature
?)value;
602
else if (typeof(TFeature) == typeof(
IHttp2StreamIdFeature
))
604
feature = Unsafe.As<
IHttp2StreamIdFeature
?, TFeature?>(ref _currentIHttp2StreamIdFeature);
762
else if (typeof(TFeature) == typeof(
IHttp2StreamIdFeature
))
764
_currentIHttp2StreamIdFeature = Unsafe.As<TFeature?,
IHttp2StreamIdFeature
?>(ref feature);
912
yield return new KeyValuePair<Type, object>(typeof(
IHttp2StreamIdFeature
), _currentIHttp2StreamIdFeature);
Internal\Http2\Http2Stream.FeatureCollection.cs (1)
46
int
IHttp2StreamIdFeature
.StreamId => _context.StreamId;