NuGet.ManifestVersionUtility.IsManifestMetadata C# (CSharp) Method

IsManifestMetadata() private static method

private static IsManifestMetadata ( PropertyInfo property ) : bool
property System.Reflection.PropertyInfo
return bool
        private static bool IsManifestMetadata(PropertyInfo property)
        {
            return _xmlAttributes.Any(attr => property.GetCustomAttribute(attr) != null);
        }
    }