public static MethodInfo GetSetMethod()

in src/React.Core/TinyIoC/TinyIoC.cs [449:456]


        public static MethodInfo GetSetMethod(this PropertyInfo propertyInfo, bool nonPublic) {
            MethodInfo setMethod = propertyInfo.SetMethod;
            if (setMethod != null && (setMethod.IsPublic || nonPublic)) {
                return setMethod;
            }

            return null;
        }