When implemented by a class, gets the MethodInfo for the set 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 ISetter is not for a property set then nullNothingnullptra null reference (Nothing in Visual Basic) is an acceptable value to return. It is used by the proxies to determine which setter to intercept for the identifier property.

See Also