IsResourceInternal() private method

private IsResourceInternal ( ) : bool
return bool
        public static IList<CustomAttributeData> GetCustomAttributes(Module target)
        {
            if (target == null)
                throw new ArgumentNullException("target");

            if (target.IsResourceInternal())
                return new List<CustomAttributeData>();

            return GetCustomAttributes(target, target.MetadataToken);
        }
Esempio n. 2
0
 public static IList <CustomAttributeData> GetCustomAttributes(Module target)
 {
     if (target == null)
     {
         throw new ArgumentNullException("target");
     }
     if (target.IsResourceInternal())
     {
         return(new List <CustomAttributeData>());
     }
     return(GetCustomAttributes(target, target.MetadataToken));
 }