RefreshTokenDestroyed 콜백 명칭 수정, LicenseCheckInterval 최솟값 버그 수정 및 불필요 using 정리
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
using System.ComponentModel.Design.Serialization;
|
||||
using System.Globalization;
|
||||
using System.Globalization;
|
||||
|
||||
namespace BaronSoftware.SSO
|
||||
{
|
||||
@@ -62,13 +61,14 @@ namespace BaronSoftware.SSO
|
||||
get => licenseCheckInterval;
|
||||
set
|
||||
{
|
||||
if (value < 15)
|
||||
licenseCheckInterval = 15;
|
||||
licenseCheckInterval = value;
|
||||
if (value < 30)
|
||||
licenseCheckInterval = 30;
|
||||
else
|
||||
licenseCheckInterval = value;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public Action ExpiredToken { get; set; }
|
||||
public Action RefreshTokenDestroyed { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user