System.ComponentModel.LicenseContext
namespace System.ComponentModel
{
public class LicenseContext : IServiceProvider
{
public virtual LicenseUsageMode UsageMode { get; }
public LicenseContext();
public virtual string GetSavedLicenseKey(Type type, Assembly resourceAssembly);
public virtual object GetService(Type type);
public virtual void SetSavedLicenseKey(Type type, string key);
}
}