File: src\SignalR\common\Shared\TaskCache.cs | Web Access |
Project: src\src\SignalR\common\Http.Connections\src\Microsoft.AspNetCore.Http.Connections.csproj (Microsoft.AspNetCore.Http.Connections) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.AspNetCore.Internal; internal static class TaskCache { public static readonly Task<bool> True = Task.FromResult(true); public static readonly Task<bool> False = Task.FromResult(false); } |