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
+8
View File
@@ -12,11 +12,19 @@ public sealed class AuthUtils
{
private LoginResponse _loginResponse = new();
/// <summary>
/// Static constructor that initializes the static <see cref="AuthUtils.InternalInstance"/> field of the <see cref="AuthUtils"/> class by assigning a new <see cref="AuthUtils"/> instance if it has not already been set.
/// </summary>
/// <!-- aidoc:v1 sig=b1904e8 body=05a5e0c -->
static AuthUtils()
{
InternalInstance ??= new AuthUtils();
}
/// <summary>
/// Initializes a new instance of the <see cref="AuthUtils"/> authentication utility class and stores a self-reference in <see cref="AuthUtils.InternalInstance"/>, allowing callers to retrieve the active instance through that property.
/// </summary>
/// <!-- aidoc:v1 sig=cfb2f97 body=ec96561 -->
public AuthUtils()
{
InternalInstance = this;