1 write to SetterMethod
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\SymbolTable.cs (1)
1270prop.SetterMethod = AddMethodToSymbolTable(methSet, aggregate, MethodKindEnum.PropAccessor);
11 references to SetterMethod
Microsoft.CSharp (11)
Microsoft\CSharp\RuntimeBinder\Errors\UserStringBuilder.cs (1)
189Debug.Assert(meth == prop.SetterMethod);
Microsoft\CSharp\RuntimeBinder\Semantics\ExpressionBinder.cs (2)
934pmwtSet = prop.SetterMethod != null 935? new MethWithType(prop.SetterMethod, pwt.GetType())
Microsoft\CSharp\RuntimeBinder\Semantics\GroupToArgsBinder.cs (1)
587method = prop.GetterMethod ?? prop.SetterMethod;
Microsoft\CSharp\RuntimeBinder\Semantics\MemberLookup.cs (1)
474MethodSymbol meth2 = swt.Prop().SetterMethod;
Microsoft\CSharp\RuntimeBinder\Semantics\Symbols\MethodSymbol.cs (1)
170return (this == property.SetterMethod);
Microsoft\CSharp\RuntimeBinder\SymbolTable.cs (5)
1274if (isIndexer || prop.SetterMethod.Params.Count == 1) 1276prop.SetterMethod.SetProperty(prop); 1281prop.SetterMethod.SetMethKind(MethodKindEnum.Actual); 1284if (prop.SetterMethod.GetAccess() > access) 1286access = prop.SetterMethod.GetAccess();