Background
Both Json.NET and the default .NET JavaScriptSerializer will treat instances of IHtmlString as an object with no properties and serialize it into an empty object. Why? Because it is an interface with only one method and methods don't serialize to JSON.
public interface IHtmlString {
string ToHtmlString();
}
Solution
For Json.NET, you will need to create a custom JsonConverter that will consume an IHtmlString and output the raw string.
public class IHtmlStringConverter : Newtonsoft.Json.JsonConverter {
public override bool CanConvert(Type objectType) {
return typeof(IHtmlString).IsAssignableFrom(objectType);
}
public override void WriteJson(Newtonsoft.Json.JsonWriter writer, object value, Newtonsoft.Json.JsonSerializer serializer) {
IHtmlString source = value as IHtmlString;
if (source == null) {
return;
}
writer.WriteValue(source.ToString());
}
public override object ReadJson(Newtonsoft.Json.JsonReader reader, Type objectType, object existingValue, Newtonsoft.Json.JsonSerializer serializer) {
// For whatever reason, if you ever want to deserialize from JSON into an IHtmlString, do so here.
throw new NotImplementedException();
}
}
With that in place, send an instance of your new IHtmlStringConverter to Json.NET's SerializeObject call.
string json = JsonConvert.SerializeObject(objectWithAnIHtmlString, new[] { new IHtmlStringConverter() });
Sample Code
For an example MVC project where a controller demos this, head over to this question's GitHub repository.