public static MethodInfo GetGetMethod()

in src/React.Core/TinyIoC/TinyIoC.cs [436:443]


        public static MethodInfo GetGetMethod(this PropertyInfo propertyInfo, bool nonPublic) {
            MethodInfo getMethod = propertyInfo.GetMethod;
            if (getMethod != null && (getMethod.IsPublic || nonPublic)) {
                return getMethod;
            }

            return null;
        }