5 references to TypeWrapper
Microsoft.AspNetCore.AsyncState (5)
AsyncContextHttpContext.cs (2)
44
httpContext.Features[typeof(
TypeWrapper
<T>)] = value;
56
value = (T?)httpContext.Features[typeof(
TypeWrapper
<T>)];
TypeWrapper.cs (3)
10
/// Instead of storing the value under it's type T, we use the type <see cref="
TypeWrapper
{T}"/>.
13
/// this other value will not conflict with the one stored under <see cref="
TypeWrapper
{T}"/>.
14
/// Note that <see cref="
TypeWrapper
{T}"/> is not public, so nobody else can use it.