public static string FullName(this ICustomAttribute attribute) { FakeCustomAttribute fca = attribute as FakeCustomAttribute; if (fca != null) { return(fca.FullTypeName); } return(attribute.Type.FullName()); }
public static string DocId(this ICustomAttribute attribute) { FakeCustomAttribute fca = attribute as FakeCustomAttribute; if (fca != null) { return(fca.DocId); } return(attribute.Type.DocId()); }