Created
September 27, 2016 14:09
-
-
Save bymyslf/83aa1cb4e0ff9f46c1b18a4d03e7888e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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