22 implementations of GetResult
Microsoft.AspNetCore.Server.HttpSys (1)
AsyncAcceptContext.cs (1)
273public RequestContext GetResult(short token)
Microsoft.AspNetCore.Server.IIS (3)
Core\IO\AsyncIOOperation.cs (1)
70public int GetResult(short token)
Core\NativeSafeHandle.cs (1)
34public object? GetResult(short token)
src\aspnetcore\src\Shared\ServerInfrastructure\ManualResetValueTaskSource.cs (1)
21public T GetResult(short token) => _core.GetResult(token);
Microsoft.AspNetCore.Server.Kestrel.Core (1)
src\aspnetcore\src\Shared\ServerInfrastructure\ManualResetValueTaskSource.cs (1)
21public T GetResult(short token) => _core.GetResult(token);
Microsoft.AspNetCore.Server.Kestrel.Transport.DirectTls (1)
TlsAwaitable.cs (1)
133public T GetResult(short token)
Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (1)
Internal\SocketAwaitableEventArgs.cs (1)
47public SocketOperationResult GetResult(short token)
System.IO.Pipelines (2)
System\IO\Pipelines\Pipe.DefaultPipeReader.cs (1)
42public ReadResult GetResult(short token) => _pipe.GetReadAsyncResult();
System\IO\Pipelines\Pipe.DefaultPipeWriter.cs (1)
42public FlushResult GetResult(short token) => _pipe.GetFlushAsyncResult();
System.Net.Http (1)
System\Net\Http\SocketsHttpHandler\CreditWaiter.cs (1)
97int IValueTaskSource<int>.GetResult(short token) =>
System.Net.Sockets (4)
System\Net\Sockets\Socket.Tasks.cs (4)
1247int IValueTaskSource<int>.GetResult(short token) 1285Socket IValueTaskSource<Socket>.GetResult(short token) 1307SocketReceiveFromResult IValueTaskSource<SocketReceiveFromResult>.GetResult(short token) 1329SocketReceiveMessageFromResult IValueTaskSource<SocketReceiveMessageFromResult>.GetResult(short token)
System.Private.CoreLib (5)
src\runtime\src\libraries\System.Private.CoreLib\src\Microsoft\Win32\SafeHandles\SafeFileHandle.ThreadPoolValueTaskSource.cs (2)
66int IValueTaskSource<int>.GetResult(short token) => (int)GetResult(token); 67public long GetResult(short token)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\PoolingAsyncValueTaskMethodBuilderT.cs (2)
296TResult IValueTaskSource<TResult>.GetResult(short token) => throw NotImplemented.ByDesign; 455TResult IValueTaskSource<TResult>.GetResult(short token)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\PeriodicTimer.cs (1)
272bool IValueTaskSource<bool>.GetResult(short token)
System.ServiceModel.NetTcp (1)
System\ServiceModel\Channels\SocketAwaitableEventArgs.cs (1)
79int IValueTaskSource<int>.GetResult(short token)
System.ServiceModel.UnixDomainSocket (1)
System\ServiceModel\Channels\SocketAwaitableEventArgs.cs (1)
79int IValueTaskSource<int>.GetResult(short token)
System.Threading.Channels (1)
System\Threading\Channels\AsyncOperation.cs (1)
522public TResult GetResult(short token)
6 references to GetResult
System.Private.CoreLib (6)
src\runtime\src\coreclr\System.Private.CoreLib\src\System\Runtime\CompilerServices\AsyncHelpers.ValueTaskSourceContinuation.cs (1)
77Unsafe.As<byte, T>(ref result) = typedSource.GetResult(token);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\AsyncHelpers.cs (2)
197return vts.GetResult(task._token); 388return vts.GetResult(task._token);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\ValueTask.cs (3)
618return Task.FromResult(t.GetResult(_token)); 676vtst.TrySetResult(source.GetResult(vtst._token)); 827return Unsafe.As<IValueTaskSource<TResult>>(obj).GetResult(_token);