|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.ComponentModel.Design;
/// <summary>
/// This class will provide a license context that the LicenseManager can use to get to
/// the design time services, like ITypeResolutionService.
/// </summary>
internal class HostDesigntimeLicenseContext : DesigntimeLicenseContext
{
private readonly IServiceProvider _provider;
public HostDesigntimeLicenseContext(IServiceProvider provider)
{
_provider = provider;
}
public override object? GetService(Type serviceClass) => _provider.GetService(serviceClass);
}
|