 | EventPropertyDescriptor Constructor |
Ctor.
Namespace:
com.espertech.esper.common.client
Assembly:
NEsper.Common (in NEsper.Common.dll) Version: 8.0.0.0
Syntaxpublic EventPropertyDescriptor(
string propertyName,
Type propertyType,
Type propertyComponentType,
bool isRequiresIndex,
bool isRequiresMapKey,
bool indexed,
bool mapped,
bool fragment
)
Parameters
- propertyName
- Type: SystemString
name of the property - propertyType
- Type: SystemType
the property type - propertyComponentType
- Type: SystemType
is the component type if the property is an indexed property - isRequiresIndex
- Type: SystemBoolean
true if the access to property value access requires an integer index value - isRequiresMapKey
- Type: SystemBoolean
true if the access to property value access requires a string map key - indexed
- Type: SystemBoolean
true if the property is an indexed property, i.e. type is an array or the property value access requires an integer index value - mapped
- Type: SystemBoolean
true if the property is a mapped property, i.e. type is an Map or the property value access requires an string map key - fragment
- Type: SystemBoolean
true if the property value can be represented as an EventBean and property type can be represented as an EventType
See Also