10 lines
303 B
C#
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;
|
|
}
|
|
} |