When implemented by a class, gets the MethodInfo for the get accessor of the property.

Namespace:  NHibernate.Property
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
ReadOnly Property Method As MethodInfo
C#
MethodInfo Method { get; }
Visual C++
property MethodInfo^ Method {
	MethodInfo^ get ();
}
JavaScript
function get_method();

Remarks

This is an optional operation - if the IGetter is not for a property get then nullNothingnullptra null reference (Nothing in Visual Basic) is an acceptable value to return. It is used by the proxies to determine which getter to intercept for the identifier property.

See Also