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