7 overrides of GetAccessors
PresentationFramework (1)
MS\Internal\Data\IndexerPropertyInfo.cs (1)
44public override MethodInfo[] GetAccessors(bool nonPublic)
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimePropertyBuilder.cs (1)
131public override MethodInfo[] GetAccessors(bool nonPublic)
src\System\Reflection\RuntimePropertyInfo.cs (1)
228public override MethodInfo[] GetAccessors(bool nonPublic)
System.Reflection.Context (2)
System\Reflection\Context\Delegation\DelegatingPropertyInfo.cs (1)
66public override MethodInfo[] GetAccessors(bool nonPublic)
System\Reflection\Context\Virtual\VirtualPropertyBase.cs (1)
82public sealed override MethodInfo[] GetAccessors(bool nonPublic)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Properties\RoProperty.cs (1)
109public sealed override MethodInfo[] GetAccessors(bool nonPublic)
System.Xaml.Tests (1)
System\Xaml\XamlMemberTests.cs (1)
2390public override MethodInfo[] GetAccessors(bool nonPublic)
6 references to GetAccessors
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (1)
Debugger\MemberInfo\PropertyInfoImpl.cs (1)
87return this.Property.GetAccessors(nonPublic).Select(a => new MethodInfoImpl(a)).ToArray();
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Reflection\PropertyInfo.cs (1)
25public MethodInfo[] GetAccessors() => GetAccessors(nonPublic: false);
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingPropertyInfo.cs (1)
68return UnderlyingProperty.GetAccessors(nonPublic);
System.Reflection.TypeExtensions (1)
System\Reflection\TypeExtensions.cs (1)
549return property.GetAccessors(nonPublic);
System.Windows.Forms.Design (1)
System\ComponentModel\Design\Serialization\CodeDomDesignerLoader.ModifiersInheritedExtenderProvider.cs (1)
115MethodInfo?[]? accessors = prop?.GetAccessors(true);
System.Xaml.Tests (1)
System\Xaml\XamlMemberTests.cs (1)
2392return DelegatingProperty.GetAccessors(nonPublic);