Infralution Support Forum Index Infralution Support
Support groups for Infralution products
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

getting Productinfo from Licensed Component

 
Post new topic   Reply to topic    Infralution Support Forum Index -> Licensing Support
View previous topic :: View next topic  
Author Message
lfmacias



Joined: 07 Mar 2007
Posts: 2

PostPosted: Wed Mar 07, 2007 1:50 pm    Post subject: getting Productinfo from Licensed Component Reply with quote

I want to create a 45 evaluation component, accondigng with the licensed sample "LicensedControl_CS" you provided I must to use EncryptedLicenseProvider, but how to get the Productinfo data in order to work with E45 vaule

Thanks
Back to top
View user's profile Send private message
Infralution



Joined: 28 Feb 2005
Posts: 5027

PostPosted: Wed Mar 07, 2007 10:00 pm    Post subject: Reply with quote

If you want to get the license you need to use the LicenseManager.IsValid method (instead of IsLicensed) then cast the license to an EncryptedLicense. ie

Code:
License license = null;
if (LicenseManager.IsValid(typeof(MyControl), this, license))
{
    EncryptedLicense encryptedLicense = license as EncryptedLicense;
    string productInfo = encryptedLicense.ProductInfo;
}

_________________
Infralution Support
Back to top
View user's profile Send private message Visit poster's website
lfmacias



Joined: 07 Mar 2007
Posts: 2

PostPosted: Wed Mar 07, 2007 11:28 pm    Post subject: Reply with quote

Thanks so much
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Infralution Support Forum Index -> Licensing Support All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group