Documentation modifications
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user