Advertisement
Guest User

IRequestParameter

a guest
Mar 29th, 2014
698
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.23 KB | None | 0 0
  1. using System.IO;
  2. using System.Text;
  3.  
  4. namespace Zelka.Apis
  5. {
  6.     public interface IRequestParameter
  7.     {
  8.         string Key { get; }
  9.  
  10.         void WriteToStream(Stream stream, string boundary, Encoding encoding);
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement