KestrelHttpServer 763 B

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