I need to write an action that will return a FileResu开发者_运维知识库lt from a string
You can use the FileContentResult
class.
var contentType = "text/xml";
var content = "<content>Your content</content>";
var bytes = Encoding.UTF8.GetBytes(content);
var result = new FileContentResult(bytes, contentType);
result.FileDownloadName = "myfile.xml";
return result;
精彩评论