Click or drag to resize

EventTypeIsProperty Method

Check that the given property name or property expression is valid for this event type, ie. that the property exists on the event type.

The method takes a property name or property expression as a parameter.

Property expressions may include indexed properties via the syntax "name[index]", mapped properties via the syntax "name('key')", nested properties via the syntax "outer.inner" or combinations thereof.

Namespace:  com.espertech.esper.common.client
Assembly:  NEsper.Common (in NEsper.Common.dll) Version: 8.0.0.0
Syntax
C#
bool IsProperty(
	string propertyExpression
)

Parameters

propertyExpression
Type: SystemString
is the property name or property expression to check

Return Value

Type: Boolean
true if exists, false if not
See Also