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)
120return rtPropAccessor.DeclaringType.GetProperty(
system\reflection\typedelegator.cs (1)
152return typeImpl.GetProperty(name,bindingAttr,binder,returnType,types,modifiers);
system\runtime\interopservices\windowsruntime\icustompropertyprovider.cs (1)
89PropertyInfo propertyInfo = target.GetType().GetProperty(
System (4)
compmod\system\componentmodel\ReflectPropertyDescriptor.cs (4)
346propInfo = componentClass.GetProperty(Name, bindingFlags, null, PropertyType, new Type[0], new ParameterModifier[0]); 463PropertyInfo p = t.GetProperty(name, bindingFlags, null, PropertyType, new Type[0], null); 482propInfo = componentClass.GetProperty(Name, bindingFlags, null, PropertyType, new Type[0], new ParameterModifier[0]); 833memberInfo = 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)
238return targetType.GetProperty(propInfo.Name, _getInfoBindingFlags, null, propInfo.PropertyType, ToTypeArray(propInfo.GetIndexParameters()), null);
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1379info = _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)
238return 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)
1379info = _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)
42PropertyInfo runtimePropInfo = type.GetProperty(name, bindingAttr, null /* binder */, returnType, types, null /* modifiers */); 49PropertyInfo reflectionPropertyInfo = reflectionType.GetProperty(name, bindingAttr, null /* binder */, returnType, reflectionTypes, null /* modifiers */);
Compilation\DelayLoadType.cs (1)
145return Type.GetProperty(name, bindingAttr, binder, returnType, types, modifiers);
UI\DataBinder.cs (1)
277collectionProp.GetType().GetProperty("Item", BindingFlags.Public | BindingFlags.Instance, null, null, new Type[] { indexValue.GetType() }, null);
UI\TargetFrameworkUtil.cs (2)
205PropertyInfo propInfo = reflectionType.GetProperty(name, bindingAttr, null /* binder */, 213return type.GetProperty(name, bindingAttr, null /* binder */, returnType, types, null /* modifiers */);
UI\WebControls\DataGrid.cs (1)
888PropertyInfo itemProp = dataSourceType.GetProperty("Item", BindingFlags.Public | BindingFlags.Instance, null, null, new Type[] { typeof(int) }, null);
UI\WebControls\GridViewColumnsGenerator.cs (1)
45PropertyInfo 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)
264PropertyInfo 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)
2542return typeof(IAccessible).GetProperty(name, bindingAttr, binder, returnType, types, modifiers);
winforms\Managed\System\WinForms\AxHost.cs (2)
6390PropertyInfo prop = GetP().GetType().GetProperty(name, bindingAttr, binder, returnType, types, modifiers); 6392prop = this.GetType().GetProperty(name, bindingAttr, binder, returnType, types, modifiers);
System.Workflow.Activities (1)
Common\BasePropertyDescriptor.cs (1)
563MemberInfo 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)
891member = baseType.GetProperty(memberSignature.Name, bindingAttr, null, memberSignature.ReturnType, memberSignature.Parameters, null);
Shared\BasePropertyDescriptor.cs (1)
562MemberInfo memberInfo = component.GetType().GetProperty("ParameterBindings", BindingFlags.GetProperty | BindingFlags.Public | BindingFlags.Instance | BindingFlags.FlattenHierarchy | BindingFlags.ExactBinding, null, typeof(WorkflowParameterBindingCollection), new Type[] { }, new ParameterModifier[] { });