9 references to GetCustomAttributes
System.Private.CoreLib (9)
System\Reflection\Runtime\Assemblies\NativeFormat\NativeFormatRuntimeAssembly.cs (1)
32
foreach (CustomAttributeData cad in RuntimeCustomAttributeData.
GetCustomAttributes
(Scope.Reader, Scope.ScopeDefinition.CustomAttributes))
System\Reflection\Runtime\EventInfos\NativeFormat\NativeFormatRuntimeEventInfo.cs (1)
100
return RuntimeCustomAttributeData.
GetCustomAttributes
(_reader, _event.CustomAttributes);
System\Reflection\Runtime\FieldInfos\NativeFormat\NativeFormatRuntimeFieldInfo.cs (1)
158
protected sealed override IEnumerable<CustomAttributeData> TrueCustomAttributes => RuntimeCustomAttributeData.
GetCustomAttributes
(_reader, _field.CustomAttributes);
System\Reflection\Runtime\MethodInfos\NativeFormat\NativeFormatMethodCommon.cs (1)
245
public IEnumerable<CustomAttributeData> TrueCustomAttributes => RuntimeCustomAttributeData.
GetCustomAttributes
(_reader, _method.CustomAttributes);
System\Reflection\Runtime\Modules\NativeFormat\NativeFormatRuntimeModule.cs (1)
31
return RuntimeCustomAttributeData.
GetCustomAttributes
(scope.Reader, scope.ScopeDefinition.ModuleCustomAttributes);
System\Reflection\Runtime\ParameterInfos\NativeFormat\NativeFormatMethodParameterInfo.cs (1)
62
protected sealed override IEnumerable<CustomAttributeData> TrueCustomAttributes => RuntimeCustomAttributeData.
GetCustomAttributes
(this.Reader, _parameter.CustomAttributes);
System\Reflection\Runtime\PropertyInfos\NativeFormat\NativeFormatRuntimePropertyInfo.cs (1)
74
return RuntimeCustomAttributeData.
GetCustomAttributes
(_reader, _property.CustomAttributes);
System\Reflection\Runtime\TypeInfos\NativeFormat\NativeFormatRuntimeGenericParameterTypeInfo.cs (1)
32
return RuntimeCustomAttributeData.
GetCustomAttributes
(Reader, _genericParameter.CustomAttributes);
System\Reflection\Runtime\TypeInfos\NativeFormat\NativeFormatRuntimeNamedTypeInfo.cs (1)
200
protected sealed override IEnumerable<CustomAttributeData> TrueCustomAttributes => RuntimeCustomAttributeData.
GetCustomAttributes
(_reader, _typeDefinition.CustomAttributes);