According to W3C, the following elements have a string value property:
option
input
select (inherited from selected option)
param
button
looking at the source in /source/CsQuery/Dom/Implementation/DomElement.cs, line 359, you're not implementing all of those. (And the lack of it for select in particular is causing problems.)
According to W3C, the following elements have a string
valueproperty:optioninputselect(inherited from selectedoption)parambuttonlooking at the source in /source/CsQuery/Dom/Implementation/DomElement.cs, line 359, you're not implementing all of those. (And the lack of it for
selectin particular is causing problems.)