12345678910111213141516171819202122232425262728293031323334 |
- namespace Vinno.vCloud.Common.License.Licenses
- {
- public enum VerifyResult
- {
- /// <summary>
- /// Verify CurrentLicense Successd
- /// </summary>
- Succeeded,
- /// <summary>
- /// Verify CurrentLicense Failed
- /// </summary>
- Failed,
- /// <summary>
- /// Verify CurrentLicense is Failed when exceeding CurrentLicense Max UsCount
- /// </summary>
- FailAndExceedMaxUsCount,
- /// <summary>
- /// Verify CurrentLicense is Failed when exceeding Max AccountCount
- /// </summary>
- FailAndExceedMaxAccountCount,
- /// <summary>
- /// Verify CurrentLicense is Failed when Now exceeding ExpirationDate
- /// </summary>
- FailAndExceedExpirationDate,
- /// <summary>
- /// No CurrentLicense
- /// </summary>
- None,
- /// <summary>
- /// 验证本机信息是否符合License
- /// </summary>
- FailAndExceedLocalInfo
- }
- }
|