When implemented by a class, gets or sets the Property that is used as the version.

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

Syntax

Visual Basic (Declaration)
Public MustOverride Property Version As Property
C#
public abstract Property Version { get; set; }
Visual C++
public:
virtual property Property^ Version {
	Property^ get () abstract;
	void set (Property^ value) abstract;
}
JavaScript
function get_version();
function set_version(value);

Field Value

The Property that is used as the version.

See Also