1 type derived from License
System.ComponentModel.TypeConverter (1)
System\ComponentModel\LicFileLicenseProvider.cs (1)
107private sealed class LicFileLicense : License
14 references to License
netstandard (1)
netstandard.cs (1)
360[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.License))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
346[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.License))]
System.ComponentModel.TypeConverter (12)
System\ComponentModel\LicenseManager.cs (9)
206bool value = ValidateInternal(type, null, false, out License? license); 217bool value = ValidateInternal(type, null, false, out License? license); 224/// specified instance of the type. This method creates a valid <see cref='System.ComponentModel.License'/>. 226public static bool IsValid(Type type, object? instance, out License? license) 258private static bool ValidateInternal(Type type, object? instance, bool allowExceptions, out License? license) 274private static bool ValidateInternalRecursive(LicenseContext context, Type type, object? instance, bool allowExceptions, out License? license, out string? licenseKey) 343if (!ValidateInternal(type, null, true, out License? lic)) 355public static License? Validate(Type type, object? instance) 357if (!ValidateInternal(type, instance, true, out License? lic))
System\ComponentModel\LicenseManager.LicenseInteropHelper.cs (1)
88out License? license,
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)