/// <summary> /// Creates a new instance of the class. /// </summary> public RuntimeBindingPath(List <string> properties, List <Func <object> > objectGetters, bool isNegated, ValueConverter valueConverter, bool convertToBindableCollection = false, Func <LayoutRoot> layoutRootGetter = null) : base(properties, objectGetters) { IsNegated = isNegated; ValueConverter = valueConverter; ConvertToBindableCollection = convertToBindableCollection; LayoutRootGetter = layoutRootGetter; }