5 references to Setter
System.Private.CoreLib (5)
System\Reflection\Runtime\General\ThunkedApis.cs (1)
144public sealed override MethodInfo GetSetMethod(bool nonPublic) => Setter?.FilterAccessor(nonPublic);
System\Reflection\Runtime\PropertyInfos\RuntimePropertyInfo.cs (4)
64return Setter != null; 82RuntimeMethodInfo accessor = (useGetter ? Getter : Setter); 183return Setter; 194_lazySetterInvoker = Setter.GetUncachedMethodInvoker(Array.Empty<RuntimeTypeInfo>(), this);