[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Get the type of an event property as returned by the "getter" method for that property. Returns unboxed (such as 'int.class') as well as boxed (java.lang.Integer) type. Returns null if the property name is not valid.

Namespace: net.esper.events
Assembly:   NEsper (in NEsper.dll)

Syntax

Visual Basic (Declaration)
Function GetPropertyType ( _
	property As String _
) As Type
C#
Type GetPropertyType (
	string property
)
Visual C++
Type^ GetPropertyType (
	String^ property
)

Parameters

property
System.String
is the property name

Return Value

type of the property, the unboxed or the boxed type.