Srikanth Mudale
Srikanth Mudale

Reputation: 205

Using Portable.Licensing how to validate the attribute hardware Id

I am working on certain project. All i need is to provide the license of the product to only one computer so i added an additional attribute hardware Id as shown in fig .How can i validate it. help me out in this regard. Thanks..

var license = Portable.Licensing.License.New()
                   .WithUniqueIdentifier(Guid.NewGuid())
                   .As(Portable.Licensing.LicenseType.Trial)
                   .ExpiresAt(DateTime.Now.AddDays(5))
                   .WithMaximumUtilization(Int32.Parse(User.Text))
                   .WithAdditionalAttributes(new Dictionary<String,String>{
                                               {"Hardware ID","12343"}
                                                })
                   .LicensedTo(name.Text, email.Text)
                   .CreateAndSignWithPrivateKey(privateKey, "212555555");

Upvotes: 6

Views: 1916

Answers (1)

Srikanth Mudale
Srikanth Mudale

Reputation: 205

Well I found the answer for this very simple one.

  1. Using AssertThat() method provided by Portable.Licencing. ex:-

            var validationFailures = licenseContent.Validate()
            .ExpirationDate()
            .When(lic => lic.Type == Portable.Licensing.LicenseType.Trial)
            .And()
            .AssertThat(lic => lic.Quantity >= 3, failure1)
            .And()
            .AssertThat(lic => lic.ProductFeatures.Get("HardwareID") == "133456", failure1)
            .When(lic => lic.ProductFeatures.Contains("HardwareID"))
            .And()
            .Signature(publicKey)
            .AssertValidLicense().ToList();
    
  2. Write your own validation case.

Upvotes: 5

Related Questions