7 overrides of Attributes
PresentationFramework (1)
MS\Internal\Data\IndexerPropertyInfo.cs (1)
29public override PropertyAttributes Attributes
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimePropertyBuilder.cs (1)
163public override PropertyAttributes Attributes => m_attributes;
src\System\Reflection\RuntimePropertyInfo.cs (1)
316public override PropertyAttributes Attributes => m_flags;
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)
49public sealed override PropertyAttributes Attributes => (_lazyPropertyAttributes == PropertyAttributesSentinel) ? (_lazyPropertyAttributes = ComputeAttributes()) : _lazyPropertyAttributes;
System.Xaml.Tests (1)
System\Xaml\XamlMemberTests.cs (1)
2373public override PropertyAttributes Attributes => DelegatingProperty.Attributes;
10 references to Attributes
Microsoft.AspNetCore.Http.Extensions (1)
src\Shared\PropertyAsParameterInfo.cs (1)
27AttrsImpl = (ParameterAttributes)propertyInfo.Attributes;
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
src\Shared\PropertyAsParameterInfo.cs (1)
27AttrsImpl = (ParameterAttributes)propertyInfo.Attributes;
Microsoft.AspNetCore.OpenApi (1)
src\Shared\PropertyAsParameterInfo.cs (1)
27AttrsImpl = (ParameterAttributes)propertyInfo.Attributes;
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (1)
Debugger\MemberInfo\PropertyInfoImpl.cs (1)
29get { return this.Property.Attributes; }
Microsoft.CodeAnalysis.Test.Utilities (2)
Platform\Custom\MetadataSignatureHelper.cs (2)
556if (property.Attributes.HasFlag(PropertyAttributes.SpecialName)) 558if (property.Attributes.HasFlag(PropertyAttributes.RTSpecialName))
System.Private.CoreLib (1)
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)
383PropertyBuilder pb = _tb.DefineProperty(pi.Name, pi.Attributes, pi.PropertyType, pi.GetIndexParameters().Select(p => p.ParameterType).ToArray());
System.Xaml.Tests (1)
System\Xaml\XamlMemberTests.cs (1)
2373public override PropertyAttributes Attributes => DelegatingProperty.Attributes;