Click or drag to resize

EventTypeGetPropertyDescriptor Method

Get the property descriptor for a given property of the event, or null if a property by that name was not found.

The property name parameter does accept a property expression. It therefore does not allow the indexed, mapped or nested property expression syntax and only returns the descriptor for the event type's known properties.

The method does not return property information of inner or nested types.

For returning a property descriptor for nested, indexed or mapped properties

use .

Namespace:  com.espertech.esper.common.client
Assembly:  NEsper.Common (in NEsper.Common.dll) Version: 8.0.0.0
Syntax
C#
EventPropertyDescriptor GetPropertyDescriptor(
	string propertyName
)

Parameters

propertyName
Type: SystemString
property name

Return Value

Type: EventPropertyDescriptor
descriptor for the named property
See Also