1 instantiation of StreamAsValueType
Microsoft.AspNetCore.Server.Kestrel.Core (1)
src\Servers\Kestrel\shared\PooledStreamStack.cs (1)
147public static implicit operator StreamAsValueType(TValue s) => new StreamAsValueType(s);
9 references to StreamAsValueType
Microsoft.AspNetCore.Server.Kestrel.Core (9)
src\Servers\Kestrel\shared\PooledStreamStack.cs (9)
21internal StreamAsValueType[] _array; 26_array = new StreamAsValueType[size]; 35StreamAsValueType[] array = _array; 52StreamAsValueType[] array = _array; 68StreamAsValueType[] array = _array; 93StreamAsValueType[] array = _array; 125private static int CalculateRemoveCount(long timestamp, int size, StreamAsValueType[] array) 147public static implicit operator StreamAsValueType(TValue s) => new StreamAsValueType(s); 148public static implicit operator TValue(StreamAsValueType s) => s._value;