aspnetcore/src/Microsoft.AspNetCore.Routing/Internal/TaskCache.cs

17 lines
473 B
C#

// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Threading.Tasks;
namespace Microsoft.AspNetCore.Routing.Internal
{
public static class TaskCache
{
#if NETSTANDARD1_3
public static readonly Task CompletedTask = Task.CompletedTask;
#else
public static readonly Task CompletedTask = Task.FromResult(0);
#endif
}
}