Click or drag to resize

EventPropertyDescriptorIsRequiresIndex Property

Returns true to indicate that the property is an indexed property and requires an index to access elements of the indexed property. Returns false to indicate that the property is not an indexed property or does not require an index for property value access.

For object events, a getter-method that takes a single integer parameter is considered an indexed property that requires an index for access.

A getter-method that returns an array is considered an index property but does not require an index for access.

Namespace:  com.espertech.esper.common.client
Assembly:  NEsper.Common (in NEsper.Common.dll) Version: 8.0.0.0
Syntax
C#
public bool IsRequiresIndex { get; }

Return Value

Type: Boolean
true to indicate that property value access requires an index value
See Also