System.Reflection.Emit.PropertyBuilder.GetGetMethod Method

Returns the public and non-public get accessor for this property.

Syntax

public override System.Reflection.MethodInfo GetGetMethod (bool nonPublic)

Parameters

nonPublic
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.

Requirements

Namespace: System.Reflection.Emit
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0