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