public Object GetObjectArray(Object[] array)
        {
            // If the map does not contain the key, this is allowed and represented as null
            Object value = array[_propertyIndex];

            return(BaseNestableEventUtil.GetBeanArrayValue(_nestedGetter, value, _index));
        }
Exemple #2
0
        public Object GetMap(IDictionary <String, Object> map)
        {
            // If the map does not contain the key, this is allowed and represented as null
            Object value = map.Get(_propertyMap);

            return(BaseNestableEventUtil.GetBeanArrayValue(_nestedGetter, value, _index));
        }
Exemple #3
0
 public object GetObjectArray(object[] array)
 {
     // If the map does not contain the key, this is allowed and represented as null
     var value = array[propertyIndex];
     return BaseNestableEventUtil.GetBeanArrayValue(nestedGetter, value, index);
 }
 public object GetMap(IDictionary<string, object> map)
 {
     // If the map does not contain the key, this is allowed and represented as null
     var value = map.Get(propertyMap);
     return BaseNestableEventUtil.GetBeanArrayValue(nestedGetter, value, index);
 }