private static bool IsFormBindingContentType(ContentTypeDefinition contentTypeDefinition) { var blacklist = new[] { "Site", "Layer" }; return(!blacklist.Any(x => contentTypeDefinition.Name == x) && String.IsNullOrEmpty(contentTypeDefinition.Stereotype())); }