4 overrides of GetRequiredCustomModifiers
System.Private.CoreLib (1)
System\Reflection\Runtime\PropertyInfos\RuntimePropertyInfo.cs (1)
123public sealed override Type[] GetRequiredCustomModifiers() => PropertyTypeHandle.GetCustomModifiers(ContextTypeInfo.TypeContext, optional: false);
System.Reflection.Context (2)
System\Reflection\Context\Delegation\DelegatingPropertyInfo.cs (1)
136public override Type[] GetRequiredCustomModifiers()
System\Reflection\Context\Virtual\VirtualPropertyBase.cs (1)
151public sealed override Type[] GetRequiredCustomModifiers()
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Properties\RoProperty.cs (1)
163public abstract override Type[] GetRequiredCustomModifiers();
5 references to GetRequiredCustomModifiers
Microsoft.AspNetCore.Http.Extensions (1)
src\aspnetcore\src\Shared\PropertyAsParameterInfo.cs (1)
204=> _underlyingProperty.GetRequiredCustomModifiers();
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
src\aspnetcore\src\Shared\PropertyAsParameterInfo.cs (1)
204=> _underlyingProperty.GetRequiredCustomModifiers();
Microsoft.AspNetCore.OpenApi (1)
src\aspnetcore\src\Shared\PropertyAsParameterInfo.cs (1)
204=> _underlyingProperty.GetRequiredCustomModifiers();
System.ComponentModel.Composition (1)
System\ComponentModel\Composition\MetadataViewGenerator.cs (1)
222requiredModifiers = propertyInfo.GetRequiredCustomModifiers();
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingPropertyInfo.cs (1)
138return UnderlyingProperty.GetRequiredCustomModifiers();