From 3a45136cc48744165577bb52048b9ea2f45e5bc3 Mon Sep 17 00:00:00 2001 From: Andrew Stanton-Nurse Date: Mon, 16 Apr 2018 11:34:06 -0700 Subject: [PATCH] make IConnectionInherentKeepAliveFeature a boolean feature (#2496) --- .../Features/IConnectionInherentKeepAliveFeature.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Connections.Abstractions/Features/IConnectionInherentKeepAliveFeature.cs b/src/Connections.Abstractions/Features/IConnectionInherentKeepAliveFeature.cs index 8056dfa957..d5751f8bcf 100644 --- a/src/Connections.Abstractions/Features/IConnectionInherentKeepAliveFeature.cs +++ b/src/Connections.Abstractions/Features/IConnectionInherentKeepAliveFeature.cs @@ -19,6 +19,6 @@ namespace Microsoft.AspNetCore.Connections.Features /// public interface IConnectionInherentKeepAliveFeature { - TimeSpan KeepAliveInterval { get; } + bool HasInherentKeepAlive { get; } } } \ No newline at end of file