Skip to content

Instantly share code, notes, and snippets.

@ODataTeam
Last active August 29, 2015 14:12
Show Gist options
  • Save ODataTeam/cd7beceddfd846a4b386 to your computer and use it in GitHub Desktop.
Save ODataTeam/cd7beceddfd846a4b386 to your computer and use it in GitHub Desktop.
public class CsvFormat : ODataFormat
{
public override ODataOutputContext CreateOutputContext(ODataMessageInfo messageInfo, ODataMessageWriterSettings messageWriterSettings)
{
return new CsvOutputContext(this, messageWriterSettings, messageInfo, synchronous: true);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment