Example #1
0
        public static IDictionary <string, object> GetDateTimeValues(this EntityRecommendation entity)
        {
            if (!entity.Type.StartsWith("builtin.datetimeV2"))
            {
                return(null);
            }

            var resolutionValues = (IList <object>)entity.Resolution["values"];

            return((IDictionary <string, object>)resolutionValues[0]);
        }
Example #2
0
        public static bool TryGetValue(this EntityRecommendation entity, out string value)
        {
            value = null;

            if (!entity.Type.EndsWith("range"))
            {
                var values = GetDateTimeValues(entity);

                value = values != null ? values["value"].ToString() : null;
            }

            return(value != null);
        }
Example #3
0
        public static bool TryGetValueFromKey(this EntityRecommendation entity, string key, out string value)
        {
            value = null;

            var values = GetDateTimeValues(entity);

            if (values != null && values.ContainsKey(key))
            {
                value = values[key].ToString();
            }

            return(value != null);
        }
Example #4
0
 public static bool TryGetRange(this EntityRecommendation entity, out (string start, string end) range)