System.ComponentModel.LicenseManager.LicenseInteropHelper.CLRLicenseContext.GetSavedLicenseKey C# (CSharp) Method

GetSavedLicenseKey() public method

public GetSavedLicenseKey ( Type type, Assembly resourceAssembly ) : string
type System.Type
resourceAssembly System.Reflection.Assembly
return string
                public override string GetSavedLicenseKey(Type type, Assembly resourceAssembly)
                {
                    return type == _type ? _key : null;
                }
                public override void SetSavedLicenseKey(Type type, string key)
LicenseManager.LicenseInteropHelper.CLRLicenseContext