aspnetcore/benchmarks/Microsoft.AspNetCore.Signal.../Shared/TestConnectionInherentKeepA...

10 lines
303 B
C#

using System;
using Microsoft.AspNetCore.Connections.Features;
namespace Microsoft.AspNetCore.SignalR.Microbenchmarks.Shared
{
public class TestConnectionInherentKeepAliveFeature : IConnectionInherentKeepAliveFeature
{
public TimeSpan KeepAliveInterval { get; } = TimeSpan.Zero;
}
}