| 12345678910111213141516171819 |
- commit 3a45136cc48744165577bb52048b9ea2f45e5bc3
- Author: Andrew Stanton-Nurse <[email protected]>
- Date: Mon Apr 16 11:34:06 2018 -0700
- make IConnectionInherentKeepAliveFeature a boolean feature (#2496)
- diff --git a/src/Connections.Abstractions/Features/IConnectionInherentKeepAliveFeature.cs b/src/Connections.Abstractions/Features/IConnectionInherentKeepAliveFeature.cs
- index 8056dfa957b..d5751f8bcf7 100644
- --- a/src/Connections.Abstractions/Features/IConnectionInherentKeepAliveFeature.cs
- +++ b/src/Connections.Abstractions/Features/IConnectionInherentKeepAliveFeature.cs
- @@ -19,6 +19,6 @@ namespace Microsoft.AspNetCore.Connections.Features
- /// </remarks>
- public interface IConnectionInherentKeepAliveFeature
- {
- - TimeSpan KeepAliveInterval { get; }
- + bool HasInherentKeepAlive { get; }
- }
- }
- \ No newline at end of file
|