public static bool IsLicensed(Type type)
{
Debug.Assert(type != null, "IsValid Type cannot ever be null");
License license;
bool value = ValidateInternal(type, null, false, out license);
if (license != null)
{
license.Dispose();
license = null;
}
return value;
}