From 2f06d80d3783a64cac86a7aa217502e3ff62b39c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 9 Sep 2021 17:55:11 +0000 Subject: [PATCH] Correct the docs on ISession.IsAvailable #27733 (#36332) Co-authored-by: Chris Ross <chrross@microsoft.com> --- src/Http/Http.Features/src/ISession.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Http/Http.Features/src/ISession.cs b/src/Http/Http.Features/src/ISession.cs index 0b7a83c5bad..c5e9a0a8795 100644 --- a/src/Http/Http.Features/src/ISession.cs +++ b/src/Http/Http.Features/src/ISession.cs @@ -15,7 +15,7 @@ namespace Microsoft.AspNetCore.Http public interface ISession { /// <summary> - /// Indicate whether the current session has loaded. + /// Indicates whether the current session loaded successfully. Accessing this property before the session is loaded will cause it to be loaded inline. /// </summary> bool IsAvailable { get; } -- GitLab