R
rino
Hi
In my implementation of LicenseProvider.GetLicense
I noticed that if I dont have a license in my exe file and I call
context.GetSavedLicenseKey(type, null);
it will fail. .... So Far so good
HOWEVER I see that if before hand I called the method with an assembly that
does contain an license
context.GetSavedLicenseKey(type, DllContainigLicenseAssembly);
and after that I once again call GetSavedLicenseKey(type,null)
This time it will return a key .
Any idea why this happens. Its as if the key is cached somewhere .
In my implementation of LicenseProvider.GetLicense
I noticed that if I dont have a license in my exe file and I call
context.GetSavedLicenseKey(type, null);
it will fail. .... So Far so good
HOWEVER I see that if before hand I called the method with an assembly that
does contain an license
context.GetSavedLicenseKey(type, DllContainigLicenseAssembly);
and after that I once again call GetSavedLicenseKey(type,null)
This time it will return a key .
Any idea why this happens. Its as if the key is cached somewhere .