24 overrides of GetCustomAttributesData
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureType.cs (1)
174public sealed override IList<CustomAttributeData> GetCustomAttributesData() => throw new NotSupportedException(SR.NotSupported_SignatureType);
src\libraries\System.Private.CoreLib\src\System\RuntimeType.cs (1)
68public override IList<CustomAttributeData> GetCustomAttributesData()
src\System\Reflection\RuntimeConstructorInfo.CoreCLR.cs (1)
154public override IList<CustomAttributeData> GetCustomAttributesData()
src\System\Reflection\RuntimeEventInfo.cs (1)
114public override IList<CustomAttributeData> GetCustomAttributesData()
src\System\Reflection\RuntimeFieldInfo.cs (1)
85public override IList<CustomAttributeData> GetCustomAttributesData()
src\System\Reflection\RuntimeMethodInfo.CoreCLR.cs (1)
197public override IList<CustomAttributeData> GetCustomAttributesData()
src\System\Reflection\RuntimePropertyInfo.cs (1)
162public override IList<CustomAttributeData> GetCustomAttributesData()
System.Reflection.Context (8)
System\Reflection\Context\Delegation\DelegatingConstructorInfo.cs (1)
101public override IList<CustomAttributeData> GetCustomAttributesData()
System\Reflection\Context\Delegation\DelegatingEventInfo.cs (1)
95public override IList<CustomAttributeData> GetCustomAttributesData()
System\Reflection\Context\Delegation\DelegatingFieldInfo.cs (1)
86public override IList<CustomAttributeData> GetCustomAttributesData()
System\Reflection\Context\Delegation\DelegatingMethodInfo.cs (1)
123public override IList<CustomAttributeData> GetCustomAttributesData()
System\Reflection\Context\Delegation\DelegatingPropertyInfo.cs (1)
116public override IList<CustomAttributeData> GetCustomAttributesData()
System\Reflection\Context\Delegation\DelegatingType.cs (1)
210public override IList<CustomAttributeData> GetCustomAttributesData()
System\Reflection\Context\Virtual\VirtualMethodBase.cs (1)
107public override IList<CustomAttributeData> GetCustomAttributesData()
System\Reflection\Context\Virtual\VirtualPropertyBase.cs (1)
166public override IList<CustomAttributeData> GetCustomAttributesData()
System.Reflection.MetadataLoadContext (6)
System\Reflection\TypeLoading\Constructors\RoConstructor.cs (1)
35public sealed override IList<CustomAttributeData> GetCustomAttributesData() => CustomAttributes.ToReadOnlyCollection();
System\Reflection\TypeLoading\Events\RoEvent.cs (1)
45public sealed override IList<CustomAttributeData> GetCustomAttributesData() => CustomAttributes.ToReadOnlyCollection();
System\Reflection\TypeLoading\Fields\RoField.cs (1)
47public sealed override IList<CustomAttributeData> GetCustomAttributesData() => CustomAttributes.ToReadOnlyCollection();
System\Reflection\TypeLoading\Methods\RoMethod.cs (1)
43public sealed override IList<CustomAttributeData> GetCustomAttributesData() => CustomAttributes.ToReadOnlyCollection();
System\Reflection\TypeLoading\Properties\RoProperty.cs (1)
46public sealed override IList<CustomAttributeData> GetCustomAttributesData() => CustomAttributes.ToReadOnlyCollection();
System\Reflection\TypeLoading\Types\RoType.cs (1)
151public sealed override IList<CustomAttributeData> GetCustomAttributesData() => CustomAttributes.ToReadOnlyCollection();
System.Runtime.InteropServices (1)
System\Runtime\InteropServices\ComAwareEventInfo.cs (1)
86public override IList<CustomAttributeData> GetCustomAttributesData() => _innerEventInfo.GetCustomAttributesData();
System.Xaml.Tests (2)
Common\CustomType.cs (1)
20public override IList<CustomAttributeData> GetCustomAttributesData()
System\Xaml\XamlTypeTests.cs (1)
5228public override IList<CustomAttributeData> GetCustomAttributesData()
36 references to GetCustomAttributesData
dotnet-svcutil-lib (1)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\DataContract.cs (1)
1537.GetCustomAttributesData()
Microsoft.AspNetCore.Diagnostics (1)
src\Shared\StackTrace\StackFrame\StackTraceHelper.cs (1)
246attributes = memberInfo.GetCustomAttributesData();
Microsoft.AspNetCore.Hosting (1)
src\Shared\StackTrace\StackFrame\StackTraceHelper.cs (1)
246attributes = memberInfo.GetCustomAttributesData();
Microsoft.AspNetCore.Http.Extensions (1)
src\Shared\PropertyAsParameterInfo.cs (1)
182attributes.AddRange(_underlyingProperty.GetCustomAttributesData());
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
src\Shared\PropertyAsParameterInfo.cs (1)
182attributes.AddRange(_underlyingProperty.GetCustomAttributesData());
Microsoft.AspNetCore.OpenApi (1)
src\Shared\PropertyAsParameterInfo.cs (1)
182attributes.AddRange(_underlyingProperty.GetCustomAttributesData());
Microsoft.AspNetCore.Server.IIS (1)
src\Shared\StackTrace\StackFrame\StackTraceHelper.cs (1)
246attributes = memberInfo.GetCustomAttributesData();
Microsoft.AspNetCore.Shared.Tests (1)
src\Shared\StackTrace\StackFrame\StackTraceHelper.cs (1)
246attributes = memberInfo.GetCustomAttributesData();
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (5)
Debugger\Engine\DkmClrType.cs (2)
267var attributeData = type.GetCustomAttributesData().FirstOrDefault(data => data.AttributeType == typeof(DebuggerDisplayAttribute)); 283var attributesData = type.GetCustomAttributesData().Where(data => data.AttributeType == typeof(DebuggerVisualizerAttribute));
Debugger\MemberInfo\FieldInfoImpl.cs (1)
89return this.Field.GetCustomAttributesData().Select(a => new CustomAttributeDataImpl(a)).ToArray();
Debugger\MemberInfo\PropertyInfoImpl.cs (1)
107return this.Property.GetCustomAttributesData().Select(a => new CustomAttributeDataImpl(a)).ToArray();
Debugger\MemberInfo\TypeImpl.cs (1)
148return Type.GetCustomAttributesData().Select(a => new CustomAttributeDataImpl(a)).ToArray();
Microsoft.Extensions.AI.Abstractions (2)
src\Shared\JsonSchemaExporter\JsonSchemaExporter.ReflectionHelpers.cs (2)
216foreach (CustomAttributeData attr in member.GetCustomAttributesData()) 239foreach (CustomAttributeData attr in member.GetCustomAttributesData())
Microsoft.Extensions.Configuration.Binder (1)
ConfigurationBinder.cs (1)
1118foreach (var attributeData in property.GetCustomAttributesData())
Microsoft.Extensions.DependencyInjection (1)
ServiceLookup\CallSiteFactory.cs (1)
131foreach (CustomAttributeData attributeData in serviceGenericType.GetCustomAttributesData())
Shared (2)
JsonSchemaExporter\JsonSchemaExporter.ReflectionHelpers.cs (2)
216foreach (CustomAttributeData attr in member.GetCustomAttributesData()) 239foreach (CustomAttributeData attr in member.GetCustomAttributesData())
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Reflection\CustomAttributeData.cs (1)
17return target.GetCustomAttributesData();
src\libraries\System.Private.CoreLib\src\System\Reflection\MemberInfo.cs (1)
38public virtual IEnumerable<CustomAttributeData> CustomAttributes => GetCustomAttributesData();
src\libraries\System.Private.CoreLib\src\System\Reflection\NullabilityInfoContext.cs (6)
42foreach (CustomAttributeData attribute in memberInfo.GetCustomAttributesData()) 199NullableAttributeStateParser parser = annotationsDisabled ? NullableAttributeStateParser.Unknown : CreateParser(propertyInfo.GetCustomAttributesData()); 248return GetNullabilityInfo(eventInfo, eventInfo.EventHandlerType!, CreateParser(eventInfo.GetCustomAttributesData())); 263IList<CustomAttributeData> attributes = fieldInfo.GetCustomAttributesData(); 504if (CreateParser(genericParameter.GetCustomAttributesData()).ParseNullableState(0, ref state)) 555NullableAttributeStateParser parser = CreateParser(contextTypeDefinition.GetCustomAttributesData());
System.Reflection.Context (6)
System\Reflection\Context\Delegation\DelegatingConstructorInfo.cs (1)
103return UnderlyingConstructor.GetCustomAttributesData();
System\Reflection\Context\Delegation\DelegatingEventInfo.cs (1)
97return UnderlyingEvent.GetCustomAttributesData();
System\Reflection\Context\Delegation\DelegatingFieldInfo.cs (1)
88return UnderlyingField.GetCustomAttributesData();
System\Reflection\Context\Delegation\DelegatingMethodInfo.cs (1)
125return UnderlyingMethod.GetCustomAttributesData();
System\Reflection\Context\Delegation\DelegatingPropertyInfo.cs (1)
118return UnderlyingProperty.GetCustomAttributesData();
System\Reflection\Context\Delegation\DelegatingType.cs (1)
212return _typeInfo.GetCustomAttributesData();
System.Runtime.InteropServices (1)
System\Runtime\InteropServices\ComAwareEventInfo.cs (1)
86public override IList<CustomAttributeData> GetCustomAttributesData() => _innerEventInfo.GetCustomAttributesData();
System.Xaml.Tests (2)
Common\CustomType.cs (1)
22return GetCustomAttributesDataResult.Or(typeImpl.GetCustomAttributesData);
System\Xaml\XamlTypeTests.cs (1)
5207IList<CustomAttributeData> baseData = typeImpl.GetCustomAttributesData();