在asp.netPortable.Licensing中,.WithMaximumUtilization(1)是什么意思和用法?
In asp.net Portable.Licensing, what does .WithMaximumUtilization(1) mean and used?
由于 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
属性。
您可以在验证许可证时随意使用它。
由于 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
属性。
您可以在验证许可证时随意使用它。