Implemented interface members:
method
GetProperty
System.Reflection.IReflect.GetProperty(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[])
method
GetProperty
System.Runtime.InteropServices._Type.GetProperty(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[])
30 references to GetProperty
mscorlib (3)
system\attribute.cs (1)
120
return rtPropAccessor.DeclaringType.
GetProperty
(
system\reflection\typedelegator.cs (1)
152
return typeImpl.
GetProperty
(name,bindingAttr,binder,returnType,types,modifiers);
system\runtime\interopservices\windowsruntime\icustompropertyprovider.cs (1)
89
PropertyInfo propertyInfo = target.GetType().
GetProperty
(
System (4)
compmod\system\componentmodel\ReflectPropertyDescriptor.cs (4)
346
propInfo = componentClass.
GetProperty
(Name, bindingFlags, null, PropertyType, new Type[0], new ParameterModifier[0]);
463
PropertyInfo p = t.
GetProperty
(name, bindingFlags, null, PropertyType, new Type[0], null);
482
propInfo = componentClass.
GetProperty
(Name, bindingFlags, null, PropertyType, new Type[0], new ParameterModifier[0]);
833
memberInfo = currentReflectType.
GetProperty
(Name, bindingFlags, null, PropertyType, new Type[0], new ParameterModifier[0]);
System.Activities.Presentation (2)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\Metadata\AttributeDataCache.cs (1)
238
return targetType.
GetProperty
(propInfo.Name, _getInfoBindingFlags, null, propInfo.PropertyType, ToTypeArray(propInfo.GetIndexParameters()), null);
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1379
info = _baseReflectionType.
GetProperty
(name, bindingAttr, binder, returnType, types, modifiers);
System.Data (2)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\Metadata\AttributeDataCache.cs (1)
238
return targetType.
GetProperty
(propInfo.Name, _getInfoBindingFlags, null, propInfo.PropertyType, ToTypeArray(propInfo.GetIndexParameters()), null);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1379
info = _baseReflectionType.
GetProperty
(name, bindingAttr, binder, returnType, types, modifiers);
System.Data.Entity.Design (4)
System\Data\Entity\Design\EntityCodeGenerator.cs (4)
608
_sourceCsdlPath = type.
GetProperty
("SourceCsdlPath", flags, null, typeof(String), new Type[0], null);
611
_referenceCsdlPaths = type.
GetProperty
("ReferenceCsdlPaths", flags, null, typeof(IEnumerable<String>), new Type[0], null);
614
_errors = type.
GetProperty
("Errors", flags, null, typeof(CompilerErrorCollection), new Type[0], null);
617
_edmToObjectNamespaceMap = type.
GetProperty
("EdmToObjectNamespaceMap", flags, null, typeof(Dictionary<string, string>), new Type[0], null);
System.Web (8)
Compilation\ClientBuildManagerTypeDescriptionProviderBridge.cs (2)
42
PropertyInfo runtimePropInfo = type.
GetProperty
(name, bindingAttr, null /* binder */, returnType, types, null /* modifiers */);
49
PropertyInfo reflectionPropertyInfo = reflectionType.
GetProperty
(name, bindingAttr, null /* binder */, returnType, reflectionTypes, null /* modifiers */);
Compilation\DelayLoadType.cs (1)
145
return Type.
GetProperty
(name, bindingAttr, binder, returnType, types, modifiers);
UI\DataBinder.cs (1)
277
collectionProp.GetType().
GetProperty
("Item", BindingFlags.Public | BindingFlags.Instance, null, null, new Type[] { indexValue.GetType() }, null);
UI\TargetFrameworkUtil.cs (2)
205
PropertyInfo propInfo = reflectionType.
GetProperty
(name, bindingAttr, null /* binder */,
213
return type.
GetProperty
(name, bindingAttr, null /* binder */, returnType, types, null /* modifiers */);
UI\WebControls\DataGrid.cs (1)
888
PropertyInfo itemProp = dataSourceType.
GetProperty
("Item", BindingFlags.Public | BindingFlags.Instance, null, null, new Type[] { typeof(int) }, null);
UI\WebControls\GridViewColumnsGenerator.cs (1)
45
PropertyInfo itemProp = dataSourceType.
GetProperty
("Item", BindingFlags.Public | BindingFlags.Instance, null, null, new Type[] { typeof(int) }, null);
System.Web.Entity (1)
System\Data\WebControls\EntityDataSourceUtil.cs (1)
264
PropertyInfo propertyInfo = type.
GetProperty
(name, BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Instance, null, null, Type.EmptyTypes, null);
System.Windows.Forms (3)
winforms\Managed\System\WinForms\AccessibleObject.cs (1)
2542
return typeof(IAccessible).
GetProperty
(name, bindingAttr, binder, returnType, types, modifiers);
winforms\Managed\System\WinForms\AxHost.cs (2)
6390
PropertyInfo prop = GetP().GetType().
GetProperty
(name, bindingAttr, binder, returnType, types, modifiers);
6392
prop = this.GetType().
GetProperty
(name, bindingAttr, binder, returnType, types, modifiers);
System.Workflow.Activities (1)
Common\BasePropertyDescriptor.cs (1)
563
MemberInfo memberInfo = component.GetType().
GetProperty
("ParameterBindings", BindingFlags.GetProperty | BindingFlags.Public | BindingFlags.Instance | BindingFlags.FlattenHierarchy | BindingFlags.ExactBinding, null, typeof(WorkflowParameterBindingCollection), new Type[] { }, new ParameterModifier[] { });
System.Workflow.ComponentModel (2)
AuthoringOM\Compiler\TypeSystem\DesignTimeType.cs (1)
891
member = baseType.
GetProperty
(memberSignature.Name, bindingAttr, null, memberSignature.ReturnType, memberSignature.Parameters, null);
Shared\BasePropertyDescriptor.cs (1)
562
MemberInfo memberInfo = component.GetType().
GetProperty
("ParameterBindings", BindingFlags.GetProperty | BindingFlags.Public | BindingFlags.Instance | BindingFlags.FlattenHierarchy | BindingFlags.ExactBinding, null, typeof(WorkflowParameterBindingCollection), new Type[] { }, new ParameterModifier[] { });