protected override void DoImpl()
 {
     // This is bad. Should Serialise the value first (first draft).
     SendDictionaryResult(
         AppSettings
         .Where(pair => pair.Value is string)
         .ToDictionary(pair => pair.Key, pair => pair.Value.ToString()));
 }