System.Reflection.Module.IsResourceInternal C# (CSharp) Method

IsResourceInternal() private method

private IsResourceInternal ( ) : bool
return bool
        internal extern bool IsResourceInternal();

Usage Example

        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);
        }
All Usage Examples Of System.Reflection.Module::IsResourceInternal