make IConnectionInherentKeepAliveFeature a boolean feature (#2496)

This commit is contained in:
Andrew Stanton-Nurse 2018-04-16 11:34:06 -07:00 committed by GitHub
parent a9e46b0d59
commit 3a45136cc4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -19,6 +19,6 @@ namespace Microsoft.AspNetCore.Connections.Features
/// </remarks>
public interface IConnectionInherentKeepAliveFeature
{
TimeSpan KeepAliveInterval { get; }
bool HasInherentKeepAlive { get; }
}
}