5 overrides of Attributes
PresentationFramework (1)
MS\Internal\Data\IndexerPropertyInfo.cs (1)
29public override PropertyAttributes Attributes
System.Private.CoreLib (1)
System\Reflection\Runtime\PropertyInfos\RuntimePropertyInfo.cs (1)
285public abstract override PropertyAttributes Attributes { get; }
System.Reflection.Context (2)
System\Reflection\Context\Delegation\DelegatingPropertyInfo.cs (1)
19public override PropertyAttributes Attributes
System\Reflection\Context\Virtual\VirtualPropertyBase.cs (1)
37public sealed override PropertyAttributes Attributes
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Properties\RoProperty.cs (1)
48public sealed override PropertyAttributes Attributes => (_lazyPropertyAttributes == PropertyAttributesSentinel) ? (_lazyPropertyAttributes = ComputeAttributes()) : _lazyPropertyAttributes;
6 references to Attributes
Microsoft.AspNetCore.Http.Extensions (1)
src\aspnetcore\src\Shared\PropertyAsParameterInfo.cs (1)
26AttrsImpl = (ParameterAttributes)propertyInfo.Attributes;
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
src\aspnetcore\src\Shared\PropertyAsParameterInfo.cs (1)
26AttrsImpl = (ParameterAttributes)propertyInfo.Attributes;
Microsoft.AspNetCore.OpenApi (1)
src\aspnetcore\src\Shared\PropertyAsParameterInfo.cs (1)
26AttrsImpl = (ParameterAttributes)propertyInfo.Attributes;
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\PropertyInfo.cs (1)
20public bool IsSpecialName => (Attributes & PropertyAttributes.SpecialName) != 0;
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingPropertyInfo.cs (1)
21get { return UnderlyingProperty.Attributes; }
System.Reflection.DispatchProxy (1)
System\Reflection\DispatchProxyGenerator.cs (1)
394PropertyBuilder pb = _tb.DefineProperty(pi.Name, pi.Attributes, pi.PropertyType, pi.GetIndexParameters().Select(p => p.ParameterType).ToArray());