System.Configuration.TypeUtil.IsTypeFromTrustedAssemblyWithoutAptca C# (CSharp) Method

IsTypeFromTrustedAssemblyWithoutAptca() static private method

static private IsTypeFromTrustedAssemblyWithoutAptca ( Type type ) : bool
type System.Type
return bool
        static internal bool IsTypeFromTrustedAssemblyWithoutAptca(Type type) {
            Assembly assembly = type.Assembly;
            return assembly.GlobalAssemblyCache && !HasAptcaBit(assembly);
        }