When implemented by a class, gets or sets the SimpleValue that contains information about the identifier.

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

Syntax

Visual Basic (Declaration)
Public MustOverride Property Identifier As SimpleValue
C#
public abstract SimpleValue Identifier { get; set; }
Visual C++
public:
virtual property SimpleValue^ Identifier {
	SimpleValue^ get () abstract;
	void set (SimpleValue^ value) abstract;
}
JavaScript
function get_identifier();
function set_identifier(value);

Field Value

The SimpleValue that contains information about the identifier.

See Also