Documentation modifications

This commit is contained in:
julian
2026-06-27 15:23:26 -07:00
parent a633fe6c06
commit a19fb90902
218 changed files with 2882 additions and 0 deletions
@@ -24,6 +24,14 @@ public class AuthService : IAuthService
//private LoginResponse? _loginResponse;
/// <summary>
/// Initializes a new instance of the <see cref="AuthService"/> class, capturing the recording settings, logger, and authority repository required for authentication operations.
/// </summary>
/// <param name="recordingSettings">The <see cref="IOptions{RecordingSettings}"/> providing access to the configured <see cref="RecordingSettings"/>.</param>
/// <param name="logger">The <see cref="ILogger{AuthService}"/> used to log authentication activity.</param>
/// <param name="authorityRepository">The <see cref="IAuthorityRepository"/> used to access authority data.</param>
/// <exception cref="Exception">Thrown when <paramref name="recordingSettings"/>.Value is <see langword="null"/>.</exception>
/// <!-- aidoc:v1 sig=acf40f6 body=d2bb62a -->
public AuthService(IOptions<RecordingSettings> recordingSettings, ILogger<AuthService> logger,
IAuthorityRepository authorityRepository)
{