![]() | EventPropertyDescriptor Properties |
The EventPropertyDescriptor type exposes the following members.
Name | Description | |
---|---|---|
![]() | IsFragment |
Returns true to indicate that the property value can itself be represented as an
and that the property type can be represented as an
.
|
![]() | IsIndexed |
Returns true for indexed properties, returns false for all other property
styles.
An indexed property is a property returning an array value or a getter-method
taking a single integer parameter.
|
![]() | IsMapped |
Returns true for mapped properties, returns false for all other property styles.
A mapped property is a property returning a Map value or a getter-method taking
a single string (key) parameter.
|
![]() | IsRequiresIndex |
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.
|
![]() | IsRequiresMapKey |
Returns true to indicate that the property is a mapped property and requires a
map key to access elements of the mapped property. Returns false to indicate that
the property is not a mapped property or does not require a map key for property
value access.
For object events, a getter-method that takes a single string parameter
is considered a mapped property that requires a map key for access.
A getter-method that returns a Map is considered a mapped property but does not
require a map key for access.
|
![]() | PropertyComponentType |
Gets property component type.
|
![]() | PropertyName |
Returns the property name.
|
![]() | PropertyType |
Returns the property underlying type.
Note that a null values is possible as null values can be selected.
|