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