Added further method header comment.

This commit is contained in:
Andy Butland
2020-11-18 17:41:10 +01:00
parent c971a2d23d
commit 024b37e0e6

View File

@@ -29,6 +29,10 @@ namespace Umbraco.Core.Security
/// <returns>Result of login operation.</returns>
Task<bool> LoginAsync(string username, string password);
/// <summary>
/// Check if a member is logged in
/// </summary>
/// <returns>True if logged in, false if not.</returns>
bool IsLoggedIn();
/// <summary>