27 references to RuntimeCustomAttribute
System.Private.CoreLib (27)
System\Reflection\Runtime\Assemblies\RuntimeAssemblyInfo.cs (3)
173public sealed override object[] GetCustomAttributes(bool inherit) => RuntimeCustomAttribute.GetCustomAttributes(this, typeof(object)); 178return RuntimeCustomAttribute.GetCustomAttributes(this, attributeType); 186return RuntimeCustomAttribute.IsDefined(this, attributeType);
System\Reflection\Runtime\EventInfos\RuntimeEventInfo.cs (3)
135public sealed override object[] GetCustomAttributes(bool inherit) => RuntimeCustomAttribute.GetCustomAttributes(this, typeof(object), inherit: false); 140return RuntimeCustomAttribute.GetCustomAttributes(this, attributeType, inherit: false); 148return RuntimeCustomAttribute.IsDefined(this, attributeType, inherit: false);
System\Reflection\Runtime\FieldInfos\RuntimeFieldInfo.cs (3)
73public sealed override object[] GetCustomAttributes(bool inherit) => RuntimeCustomAttribute.GetCustomAttributes(this, typeof(object), inherit); 78return RuntimeCustomAttribute.GetCustomAttributes(this, attributeType, inherit); 86return RuntimeCustomAttribute.IsDefined(this, attributeType, inherit);
System\Reflection\Runtime\MethodInfos\RuntimeConstructorInfo.cs (3)
36public sealed override object[] GetCustomAttributes(bool inherit) => RuntimeCustomAttribute.GetCustomAttributes(this, typeof(object), inherit); 41return RuntimeCustomAttribute.GetCustomAttributes(this, attributeType, inherit); 49return RuntimeCustomAttribute.IsDefined(this, attributeType, inherit);
System\Reflection\Runtime\Modules\RuntimeModule.cs (3)
30public sealed override object[] GetCustomAttributes(bool inherit) => RuntimeCustomAttribute.GetCustomAttributes(this, typeof(object)); 35return RuntimeCustomAttribute.GetCustomAttributes(this, attributeType); 43return RuntimeCustomAttribute.IsDefined(this, attributeType);
System\Reflection\Runtime\ParameterInfos\RuntimeParameterInfo.cs (3)
28public sealed override object[] GetCustomAttributes(bool inherit) => RuntimeCustomAttribute.GetCustomAttributes(this, typeof(object)); 33return RuntimeCustomAttribute.GetCustomAttributes(this, attributeType); 41return RuntimeCustomAttribute.IsDefined(this, attributeType);
System\Reflection\Runtime\PropertyInfos\RuntimePropertyInfo.cs (3)
287public sealed override object[] GetCustomAttributes(bool inherit) => RuntimeCustomAttribute.GetCustomAttributes(this, typeof(object), inherit: false); 292return RuntimeCustomAttribute.GetCustomAttributes(this, attributeType, inherit: false); 300return RuntimeCustomAttribute.IsDefined(this, attributeType, inherit: false);
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.cs (3)
107public object[] GetCustomAttributes(bool inherit) => RuntimeCustomAttribute.GetCustomAttributes(ToType(), typeof(object), inherit); 112return RuntimeCustomAttribute.GetCustomAttributes(ToType(), attributeType, inherit); 120return RuntimeCustomAttribute.IsDefined(ToType(), attributeType, inherit);
System\Reflection\RuntimeMethodInfo.cs (3)
92public sealed override object[] GetCustomAttributes(bool inherit) => RuntimeCustomAttribute.GetCustomAttributes(this, typeof(object), inherit); 97return RuntimeCustomAttribute.GetCustomAttributes(this, attributeType, inherit); 105return RuntimeCustomAttribute.IsDefined(this, attributeType, inherit);