4 types derived from LicenseContext
System.ComponentModel.TypeConverter (4)
System\ComponentModel\Design\DesigntimeLicenseContext.cs (2)
16public class DesigntimeLicenseContext : LicenseContext 41internal sealed class RuntimeLicenseContext : LicenseContext
System\ComponentModel\LicenseManager.LicenseInteropHelper.cs (2)
14private sealed class CLRLicenseContext : LicenseContext 63private sealed class LicInfoHelperLicenseContext : LicenseContext
14 references to LicenseContext
netstandard (1)
netstandard.cs (1)
361[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.LicenseContext))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
347[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.LicenseContext))]
System.ComponentModel.TypeConverter (12)
System\ComponentModel\LicenseManager.cs (7)
22private static volatile LicenseContext? s_context; 34/// Gets or sets the current <see cref='System.ComponentModel.LicenseContext'/> which specifies when the licensed object can be 37public static LicenseContext CurrentContext 121LicenseContext creationContext) 134LicenseContext creationContext, 141LicenseContext normal = CurrentContext; 274private static bool ValidateInternalRecursive(LicenseContext context, Type type, object? instance, bool allowExceptions, out License? license, out string? licenseKey)
System\ComponentModel\LicenseManager.LicenseInteropHelper.cs (3)
86LicenseContext context, 105public static LicenseContext GetCurrentContextInfo(Type type, out bool isDesignTime, out string? key) 107LicenseContext licContext = LicenseManager.CurrentContext;
System\ComponentModel\LicenseProvider.cs (1)
15public abstract License? GetLicense(LicenseContext context, Type type, object? instance, bool allowExceptions);
System\ComponentModel\LicFileLicenseProvider.cs (1)
48public override License? GetLicense(LicenseContext context, Type type, object? instance, bool allowExceptions)