Skip to content

Instantly share code, notes, and snippets.

@bymyslf
Created September 27, 2016 14:09
Show Gist options
  • Save bymyslf/83aa1cb4e0ff9f46c1b18a4d03e7888e to your computer and use it in GitHub Desktop.
Save bymyslf/83aa1cb4e0ff9f46c1b18a4d03e7888e to your computer and use it in GitHub Desktop.
using System.Net.Http;
internal class EmptyContent : ByteArrayContent
{
public EmptyContent()
: base(new byte[0])
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment