Implemented interface member:
method
GetGetMethod
System.Runtime.InteropServices._PropertyInfo.GetGetMethod(System.Boolean)
11 overrides of GetGetMethod
mscorlib (2)
system\reflection\emit\propertybuilder.cs (1)
206public override MethodInfo GetGetMethod(bool nonPublic)
system\reflection\propertyinfo.cs (1)
512public override MethodInfo GetGetMethod(bool nonPublic)
PresentationFramework (1)
src\Framework\MS\Internal\Data\IndexerPropertyInfo.cs (1)
53public override MethodInfo GetGetMethod(bool nonPublic)
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1819public override MethodInfo GetGetMethod(bool nonPublic) { return _info.GetGetMethod(nonPublic); }
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1819public override MethodInfo GetGetMethod(bool nonPublic) { return _info.GetGetMethod(nonPublic); }
System.Workflow.Activities (1)
Designers\StateDesigner.cs (1)
2470public override MethodInfo GetGetMethod(bool nonPublic)
System.Workflow.ComponentModel (5)
AuthoringOM\Bind.cs (1)
1613public override MethodInfo GetGetMethod(bool nonPublic)
AuthoringOM\Compiler\TypeSystem\PropertyInfo.cs (1)
68public override MethodInfo GetGetMethod(bool nonPublic)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
976public override MethodInfo GetGetMethod(bool nonPublic)
AuthoringOM\Design\ComponentSerializationService.cs (1)
747public override MethodInfo GetGetMethod(bool nonPublic)
AuthoringOM\Serializer\ExtendedPropertyInfo.cs (1)
110public override MethodInfo GetGetMethod(bool nonPublic)
49 references to GetGetMethod
mscorlib (5)
system\attribute.cs (1)
99MethodInfo propAccessor = property.GetGetMethod(true);
system\reflection\propertyinfo.cs (2)
142return GetGetMethod(true); 154public MethodInfo GetGetMethod() { return GetGetMethod(false); }
system\rttype.cs (1)
4892semiFinalist = semiFinalists[i].GetGetMethod(true);
system\runtime\interopservices\windowsruntime\custompropertyimpl.cs (1)
109MethodInfo accessor = getValue ? m_property.GetGetMethod(true) : m_property.GetSetMethod(true);
PresentationBuildTasks (2)
Framework\System\Windows\Markup\XamlTypeMapper.cs (2)
1082MethodInfo mi = pi.GetGetMethod(true); 1090MethodInfo mi = pi.GetGetMethod(true);
PresentationFramework (2)
src\Framework\System\Windows\Markup\XamlTypeMapper.cs (2)
1205MethodInfo mi = pi.GetGetMethod(true); 1226MethodInfo mi = pi.GetGetMethod(true);
System (1)
compmod\system\componentmodel\ReflectPropertyDescriptor.cs (1)
349getMethod = propInfo.GetGetMethod(true);
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1819public override MethodInfo GetGetMethod(bool nonPublic) { return _info.GetGetMethod(nonPublic); }
System.ComponentModel.DataAnnotations (1)
DataAnnotations\ValidationAttribute.cs (1)
242MethodInfo propertyGetter = property.GetGetMethod(true /*nonPublic*/);
System.Core (7)
Microsoft\Scripting\Ast\IndexExpression.cs (2)
295mi = pi.GetGetMethod(true); 366MethodInfo getter = property.GetGetMethod(true);
Microsoft\Scripting\Ast\MemberExpression.cs (2)
261MethodInfo mi = property.GetGetMethod(true) ?? property.GetSetMethod(true); 297if (pi.CanRead && CheckMethod(mi, pi.GetGetMethod(true))) {
Microsoft\Scripting\Compiler\LambdaCompiler.Address.cs (1)
261EmitCall(instanceType, pi.GetGetMethod(true));
Microsoft\Scripting\Compiler\LambdaCompiler.Expressions.cs (2)
275var method = node.Indexer.GetGetMethod(true); 710EmitCall(objectType, ((PropertyInfo)member).GetGetMethod(true));
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1819public override MethodInfo GetGetMethod(bool nonPublic) { return _info.GetGetMethod(nonPublic); }
System.Data.Entity (7)
System\Data\Metadata\Edm\EdmProperty.cs (1)
69method = propertyInfo.GetGetMethod(true); // return public or non-public getter
System\Data\Objects\ELinq\TypeSystem.cs (1)
141if (property.CanRead && (property.GetGetMethod(true) == method))
System\Data\Objects\Internal\EntityProxyFactory.cs (5)
600return CanProxyMethod(clrProperty.GetGetMethod(true)); 738MethodInfo baseGetter = baseProperty.GetGetMethod(true); 874MethodInfo baseGetter = baseProperty.GetGetMethod(true); 997gen.Emit(OpCodes.Call, _baseGetters[i].GetGetMethod(true)); 1238MethodInfo baseGetter = baseProperty.GetGetMethod(true);
System.Data.Linq (3)
Mapping\Accessors.cs (1)
94MethodInfo getMethod = pi.GetGetMethod(true);
Mapping\AttributedMetaModel.cs (1)
627bool isPublic = (pi.CanRead && pi.GetGetMethod(false) != null)
SqlClient\Reader\ObjectReaderCompiler.cs (1)
2210MethodInfo meth = pi.GetGetMethod(true);
System.Runtime.Serialization (5)
System\Runtime\Serialization\ClassDataContract.cs (1)
882MethodInfo getMethod = property.GetGetMethod(true);
System\Runtime\Serialization\CodeGenerator.cs (1)
762MethodInfo getMethod = property.GetGetMethod(true);
System\Runtime\Serialization\DataMember.cs (1)
280MethodInfo getMethod = property.GetGetMethod(true /*nonPublic*/);
System\Runtime\Serialization\Json\JsonFormatGeneratorStatics.cs (1)
197getItemContractMethod = typeof(CollectionDataContract).GetProperty("ItemContract", Globals.ScanAllMembers).GetGetMethod(true); // nonPublic
System\Runtime\Serialization\XmlFormatGeneratorStatics.cs (1)
142getItemContractMethod = typeof(CollectionDataContract).GetProperty("ItemContract", Globals.ScanAllMembers).GetGetMethod(true/*nonPublic*/);
System.ServiceModel (1)
System\ServiceModel\Description\TypeLoader.cs (1)
1274MethodInfo getMethod = property.GetGetMethod(true);
System.Workflow.Activities (5)
Designers\StateDesigner.cs (1)
2472return this.realPropertyInfo.GetGetMethod(nonPublic);
Rules\Design\Dialogs\IntellisenseTextBox.cs (1)
359MethodInfo mi = ((PropertyInfo)item).GetGetMethod(true);
Rules\Executor.cs (1)
113if (!propertyInfo.GetGetMethod(true).IsStatic && targetObject == null)
Rules\Expressions.cs (2)
1119MethodInfo accessorMethod = isWritten ? pi.GetSetMethod(includeNonPublic) : pi.GetGetMethod(includeNonPublic); 2388MethodInfo accessorMethod = isWritten ? pi.GetSetMethod(includeNonPublic) : pi.GetGetMethod(includeNonPublic);
System.Workflow.ComponentModel (4)
AuthoringOM\Compiler\TypeSystem\DesignTimeType.cs (1)
733accessorMethod = propertyInfo.GetGetMethod(true);
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
978MethodInfo methodInfo = this.propertyInfo.GetGetMethod(nonPublic);
AuthoringOM\Design\ComponentSerializationService.cs (1)
750return this.realPropInfo.GetGetMethod(nonPublic);
AuthoringOM\Serializer\ExtendedPropertyInfo.cs (1)
112return this.realPropertyInfo.GetGetMethod(nonPublic);
System.WorkflowServices (1)
System\Workflow\Activities\ContractType.cs (1)
562accessorMethod = propertyInfo.GetGetMethod(true);
System.Xml (3)
System\Xml\Serialization\CodeGenerator.cs (3)
709result = currentProperty.GetGetMethod(true); 745MethodInfo getMethod = property.GetGetMethod(true); 777MethodInfo getMethod = property.GetGetMethod(true);