Get all candidate persistent properties or fields for a given entity subclass or interface.

Namespace: NHibernate.Mapping.ByCode.Impl
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
IEnumerable<MemberInfo> GetComponentMembers(
	Type componentClass
)
Visual Basic
Function GetComponentMembers ( _
	componentClass As Type _
) As IEnumerable(Of MemberInfo)
Visual C++
IEnumerable<MemberInfo^>^ GetComponentMembers(
	Type^ componentClass
)

Parameters

componentClass
Type: System..::..Type
The class of the component or an interface.

Return Value

All candidate properties or fields.

See Also