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

SetSavedLicenseKey() public method

public SetSavedLicenseKey ( Type type, string key ) : void
type System.Type
key string
return void
                public override void SetSavedLicenseKey(Type type, string key)
                {
                    if (type == _type)
                    {
                        _key = key;
                    }
                }
            }
LicenseManager.LicenseInteropHelper.CLRLicenseContext