We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
SessionOptions.IOTimeout
1 parent 80880d0 commit 28a6f89Copy full SHA for 28a6f89
src/Middleware/Session/src/SessionOptions.cs
@@ -38,7 +38,7 @@ public CookieBuilder Cookie
38
public TimeSpan IdleTimeout { get; set; } = TimeSpan.FromMinutes(20);
39
40
/// <summary>
41
- /// The maximim amount of time allowed to load a session from the store or to commit it back to the store.
+ /// The maximum amount of time allowed to load a session from the store or to commit it back to the store.
42
/// Note this may only apply to asynchronous operations. This timeout can be disabled using <see cref="Timeout.InfiniteTimeSpan"/>.
43
/// </summary>
44
public TimeSpan IOTimeout { get; set; } = TimeSpan.FromMinutes(1);
0 commit comments