Fixes indexing value in searchPath field to be a path separated with spaces instead of returning a collection because e.ValueSet.Values["path"] returns List<object> which is the same has e.ValueSet.GetValues("path")
There is also a .GetValue() method which returns an object. Seems to do the same as e.ValueSet.Values["path"][0].
Fixes indexing value in
searchPath
field to be a path separated with spaces instead of returning a collection becausee.ValueSet.Values["path"]
returnsList<object>
which is the same hase.ValueSet.GetValues("path")
There is also a
.GetValue()
method which returns an object. Seems to do the same ase.ValueSet.Values["path"][0]
.