作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
由于 Portable.Licensing 中缺少文档,我想知道生成许可证时 .WithMaximumUtilization(1) 会做什么?这是否意味着许可证允许安装 1 次?如果是这种情况,如何验证?
var license = License.New()
.WithUniqueIdentifier(Guid.NewGuid())
.As(LicenseType.Trial)
.ExpiresAt(DateTime.Now.AddDays(30))
.WithMaximumUtilization(1) // What does this do?
.WithProductFeatures(new Dictionary<string, string>
{
{"Sales Module", "yes"},
{"Purchase Module", "yes"},
{"Maximum Transactions", "10000"}
})
.LicensedTo("John Doe", "john.doe@example.com")
.CreateAndSignWithPrivateKey(privateKey, passPhrase);
最佳答案
该值刚刚分配给 license.Quantity
属性。
您可以在验证许可证时随意使用它。
关于c# - 在 asp.net Portable.Licensing 中,.WithMaximumUtilization(1) 的含义和用途是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51961644/
由于 Portable.Licensing 中缺少文档,我想知道生成许可证时 .WithMaximumUtilization(1) 会做什么?这是否意味着许可证允许安装 1 次?如果是这种情况,如何验
我是一名优秀的程序员,十分优秀!