Implemented interface member:
method
GetProperty
System.Reflection.IReflect.GetProperty(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[])
19 references to GetProperty
illink (1)
src\tools\illink\src\ILLink.Shared\TrimAnalysis\IntrinsicId.cs (1)
125
/// <item><see cref="System.Type.
GetProperty
(string, System.Reflection.BindingFlags, System.Reflection.Binder?, System.Type?, System.Type[], System.Reflection.ParameterModifier[]?)"/></item>
ILLink.RoslynAnalyzer (1)
src\tools\illink\src\ILLink.Shared\TrimAnalysis\IntrinsicId.cs (1)
125
/// <item><see cref="System.Type.
GetProperty
(string, System.Reflection.BindingFlags, System.Reflection.Binder?, System.Type?, System.Type[], System.Reflection.ParameterModifier[]?)"/></item>
Microsoft.AspNetCore.Grpc.JsonTranscoding.Tests (1)
Infrastructure\TestHelpers.cs (1)
37
var property = typeToConvert.
GetProperty
("Descriptor", BindingFlags.Static | BindingFlags.Public, binder: null, typeof(MessageDescriptor), Type.EmptyTypes, modifiers: null);
Microsoft.AspNetCore.Http.Extensions (1)
src\Shared\ObjectMethodExecutor\AwaitableInfo.cs (1)
65
var isCompletedProperty = awaiterType.
GetProperty
("IsCompleted", Everything, binder: null, returnType: typeof(bool), types: Type.EmptyTypes, modifiers: null);
Microsoft.AspNetCore.Mvc.Core (1)
src\Shared\ObjectMethodExecutor\AwaitableInfo.cs (1)
65
var isCompletedProperty = awaiterType.
GetProperty
("IsCompleted", Everything, binder: null, returnType: typeof(bool), types: Type.EmptyTypes, modifiers: null);
Microsoft.AspNetCore.OpenApi (1)
src\Shared\ObjectMethodExecutor\AwaitableInfo.cs (1)
65
var isCompletedProperty = awaiterType.
GetProperty
("IsCompleted", Everything, binder: null, returnType: typeof(bool), types: Type.EmptyTypes, modifiers: null);
Microsoft.AspNetCore.Shared.Tests (1)
src\Shared\ObjectMethodExecutor\AwaitableInfo.cs (1)
65
var isCompletedProperty = awaiterType.
GetProperty
("IsCompleted", Everything, binder: null, returnType: typeof(bool), types: Type.EmptyTypes, modifiers: null);
Microsoft.AspNetCore.SignalR.Core (1)
src\Shared\ObjectMethodExecutor\AwaitableInfo.cs (1)
65
var isCompletedProperty = awaiterType.
GetProperty
("IsCompleted", Everything, binder: null, returnType: typeof(bool), types: Type.EmptyTypes, modifiers: null);
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (1)
Debugger\MemberInfo\TypeImpl.cs (1)
394
return new PropertyInfoImpl(Type.
GetProperty
(name, (System.Reflection.BindingFlags)bindingAttr, binder: null, returnType: null, types: new System.Type[0], modifiers: new System.Reflection.ParameterModifier[0]));
System.ComponentModel.TypeConverter (4)
System\ComponentModel\ReflectPropertyDescriptor.cs (4)
335
_propInfo = _componentClass.
GetProperty
(Name, bindingFlags, binder: null, PropertyType, Type.EmptyTypes, Array.Empty<ParameterModifier>());
427
PropertyInfo? p = t.
GetProperty
(name, bindingFlags, binder: null, PropertyType, Type.EmptyTypes, null);
448
_propInfo = _componentClass.
GetProperty
(Name, bindingFlags, binder: null, PropertyType, Type.EmptyTypes, Array.Empty<ParameterModifier>());
818
memberInfo = currentReflectType.
GetProperty
(Name, bindingFlags, binder: null, PropertyType, Type.EmptyTypes, Array.Empty<ParameterModifier>());
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
115
return typeImpl.
GetProperty
(name, bindingAttr, binder, returnType, types!, modifiers);
src\libraries\System.Private.CoreLib\src\System\Type.cs (1)
438
public PropertyInfo? GetProperty(string name, Type? returnType, Type[] types, ParameterModifier[]? modifiers) =>
GetProperty
(name, DefaultLookup, null, returnType, types, modifiers);
src\System\Attribute.CoreCLR.cs (1)
104
return rtPropAccessor.DeclaringType!.
GetProperty
(
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
405
property = _typeInfo.
GetProperty
(name, bindingAttr, binder, returnType, types, modifiers);
System.Windows.Forms (1)
System\Windows\Forms\Accessibility\AccessibleObject.cs (1)
2936
=> typeof(IAccessible).
GetProperty
(name, bindingAttr, binder, returnType, types, modifiers);
System.Windows.Forms.Design (1)
System\ComponentModel\Design\DesignerHost.cs (1)
1227
typeof(IDesignerHost).
GetProperty
(name, bindingAttr, binder, returnType, types, modifiers);