1 write to GetterMethod
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\SymbolTable.cs (1)
1249
prop.
GetterMethod
= AddMethodToSymbolTable(methGet, aggregate, MethodKindEnum.PropAccessor);
10 references to GetterMethod
Microsoft.CSharp (10)
Microsoft\CSharp\RuntimeBinder\Errors\UserStringBuilder.cs (1)
183
if (prop.
GetterMethod
== meth)
Microsoft\CSharp\RuntimeBinder\Semantics\ExpressionBinder.cs (2)
931
pmwtGet = prop.
GetterMethod
!= null
932
? new MethWithType(prop.
GetterMethod
, pwt.GetType())
Microsoft\CSharp\RuntimeBinder\Semantics\GroupToArgsBinder.cs (1)
587
method = prop.
GetterMethod
?? prop.SetterMethod;
Microsoft\CSharp\RuntimeBinder\Semantics\MemberLookup.cs (1)
473
MethodSymbol meth1 = swt.Prop().
GetterMethod
;
Microsoft\CSharp\RuntimeBinder\SymbolTable.cs (5)
1253
if (isIndexer || prop.
GetterMethod
.Params.Count == 0)
1255
prop.
GetterMethod
.SetProperty(prop);
1260
prop.
GetterMethod
.SetMethKind(MethodKindEnum.Actual);
1263
if (prop.
GetterMethod
.GetAccess() > access)
1265
access = prop.
GetterMethod
.GetAccess();