I am new to ServiceStack. It has feature to provide csv file for the data but I need to download it in UTF8 format because I am getting some special characters. I have tried this config setting.
SetConfig(new HostConfig
        {
            AppendUtf8CharsetOnContentTypes = new HashSet<string> { MimeTypes.Csv } 
        });
but no luck.. Please suggest what I am doing wrong.
 
     
    