PropertyBuilder.GetGetMethod(Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the public and non-public get accessor for this property.
public:
override System::Reflection::MethodInfo ^ GetGetMethod(bool nonPublic);
public override System.Reflection.MethodInfo? GetGetMethod (bool nonPublic);
public override System.Reflection.MethodInfo GetGetMethod (bool nonPublic);
override this.GetGetMethod : bool -> System.Reflection.MethodInfo
Public Overrides Function GetGetMethod (nonPublic As Boolean) As MethodInfo
Parameters
- nonPublic
- Boolean
Indicates whether non-public get accessors should be returned. true
if non-public methods are to be included; otherwise, false
.
Returns
A MethodInfo
object representing the get accessor for this property, if nonPublic
is true
. Returns null
if nonPublic
is false
and the get accessor is non-public, or if nonPublic
is true
but no get accessors exist.
Remarks
To get the getter of a property, reflect on the property's parent type using Type.GetType or Assembly.GetType, retrieve the Reflection property object from the type, and call PropertyInfo.GetGetMethod.