1 write to GetterMethod
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\SymbolTable.cs (1)
1274
prop.
GetterMethod
= AddMethodToSymbolTable(methGet, aggregate, MethodKindEnum.PropAccessor);
10 references to GetterMethod
Microsoft.CSharp (10)
Microsoft\CSharp\RuntimeBinder\Errors\UserStringBuilder.cs (1)
189
if (prop.
GetterMethod
== meth)
Microsoft\CSharp\RuntimeBinder\Semantics\ExpressionBinder.cs (2)
953
pmwtGet = prop.
GetterMethod
!= null
954
? new MethWithType(prop.
GetterMethod
, pwt.GetType())
Microsoft\CSharp\RuntimeBinder\Semantics\GroupToArgsBinder.cs (1)
588
method = prop.
GetterMethod
?? prop.SetterMethod;
Microsoft\CSharp\RuntimeBinder\Semantics\MemberLookup.cs (1)
474
MethodSymbol meth1 = swt.Prop().
GetterMethod
;
Microsoft\CSharp\RuntimeBinder\SymbolTable.cs (5)
1278
if (isIndexer || prop.
GetterMethod
.Params.Count == 0)
1280
prop.
GetterMethod
.SetProperty(prop);
1285
prop.
GetterMethod
.SetMethKind(MethodKindEnum.Actual);
1288
if (prop.
GetterMethod
.GetAccess() > access)
1290
access = prop.
GetterMethod
.GetAccess();