System.ComponentModel.LicenseManager.LicenseInteropHelper.CLRLicenseContext.SetSavedLicenseKey C# (CSharp) 메소드

SetSavedLicenseKey() 공개 메소드

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