Skip to content

Commit

Permalink
updated XML docs
Browse files Browse the repository at this point in the history
  • Loading branch information
bgmulinari committed Dec 2, 2024
1 parent afa3f68 commit 5317c8d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
8 changes: 5 additions & 3 deletions B1SLayer/B1SLayer.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions B1SLayer/SLConnection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -347,16 +347,18 @@ private IFlurlClient BuildFlurlClient()
#region Session Management Methods

/// <summary>
/// If the current session is expired or non-existent, performs a POST Login request with the provided information.
/// Manually performing the Login is often unnecessary because it will be performed automatically anyway whenever needed.
/// Performs a POST Login request with the provided information, regardless of the current session state.
/// </summary>
/// <remarks>
/// Manually performing the Login is often unnecessary because it will be performed automatically anyway whenever needed.
/// </remarks>
public async Task<SLLoginResponse> LoginAsync() => await ExecuteLoginAsync(true);

/// <summary>
/// Performs the POST Login request to the Service Layer.
/// </summary>
/// <param name="expectReturn">
/// Wheter the login information should be returned.
/// Whether the login information should be returned.
/// </param>
private async Task<SLLoginResponse> ExecuteLoginAsync(bool expectReturn = false)
{
Expand Down

0 comments on commit 5317c8d

Please sign in to comment.