Is there a way to get the raw data from an HTML property (property of type HTMLPropertyClass)?
The example below will give me the value of the HTML property "BodyContent", where some of the content has been changed, like for example links have changed from "/?nid=123" to "/my-article". I would like to get the raw data without any changes to the URL-s, without having to do SQL queries.
var article = WAFContext.Request.GetContent<ArticleBase>();
string html = article.BodyContent;