Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetGetMethod() [2/2]

override? MethodInfo System.Reflection.Emit.PropertyBuilder.GetGetMethod ( bool nonPublic)
inline

Definition at line 165 of file PropertyBuilder.cs.

166 {
167 if (nonPublic || m_getMethod == null)
168 {
169 return m_getMethod;
170 }
171 if ((m_getMethod.Attributes & MethodAttributes.Public) == MethodAttributes.Public)
172 {
173 return m_getMethod;
174 }
175 return null;
176 }
MethodAttributes Attributes
Definition MethodBase.cs:24

References System.Reflection.MethodBase.Attributes, and System.Reflection.Emit.PropertyBuilder.m_getMethod.