system\reflection\customattribute.cs (23)
76Attribute[] a = PseudoCustomAttribute.GetCustomAttributes((RuntimeType)target, typeof(object) as RuntimeType, true, out pcaCount);
99Attribute[] a = PseudoCustomAttribute.GetCustomAttributes((RuntimeFieldInfo)target, typeof(object) as RuntimeType, out pcaCount);
122Attribute[] a = PseudoCustomAttribute.GetCustomAttributes((RuntimeMethodInfo)target, typeof(object) as RuntimeType, true, out pcaCount);
180Attribute[] a = PseudoCustomAttribute.GetCustomAttributes(target, typeof(object) as RuntimeType, false, out pcaCount);
203Attribute[] a = PseudoCustomAttribute.GetCustomAttributes(target, typeof(object) as RuntimeType, out pcaCount);
1194if (PseudoCustomAttribute.IsDefined(type, caType))
1222if (PseudoCustomAttribute.IsDefined(method, caType))
1250if (PseudoCustomAttribute.IsDefined(ctor, caType))
1262if (PseudoCustomAttribute.IsDefined(property, caType))
1274if (PseudoCustomAttribute.IsDefined(e, caType))
1286if (PseudoCustomAttribute.IsDefined(field, caType))
1298if (PseudoCustomAttribute.IsDefined(parameter, caType))
1310if (PseudoCustomAttribute.IsDefined(assembly, caType))
1322if (PseudoCustomAttribute.IsDefined(module, caType))
1341Attribute[] pca = PseudoCustomAttribute.GetCustomAttributes(type, caType, true, out pcaCount);
1442Attribute[] pca = PseudoCustomAttribute.GetCustomAttributes(method, caType, true, out pcaCount);
1484Attribute[] pca = PseudoCustomAttribute.GetCustomAttributes(ctor, caType, true, out pcaCount);
1497Attribute[] pca = PseudoCustomAttribute.GetCustomAttributes(property, caType, out pcaCount);
1516Attribute[] pca = PseudoCustomAttribute.GetCustomAttributes(e, caType, out pcaCount);
1534Attribute[] pca = PseudoCustomAttribute.GetCustomAttributes(field, caType, out pcaCount);
1547Attribute[] pca = PseudoCustomAttribute.GetCustomAttributes(parameter, caType, out pcaCount);
1560Attribute[] pca = PseudoCustomAttribute.GetCustomAttributes(assembly, caType, true, out pcaCount);
1575Attribute[] pca = PseudoCustomAttribute.GetCustomAttributes(module, caType, out pcaCount);