Guest User

www.whatibroke.com

a guest
Oct 22nd, 2014
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.54 KB | None | 0 0
  1. using System.Net;
  2.  
  3. namespace System.ServiceModel.Web
  4. {
  5. #if NetFx      
  6.         public interface IIncomingWebRequestContext
  7. #else
  8.         internal interface IIncomingWebRequestContext
  9. #endif
  10.         {
  11.                 string Accept { get; }
  12.                 long ContentLength { get; }
  13.                 string ContentType { get; }
  14.                 WebHeaderCollection Headers { get; }
  15.                 string Method { get; }
  16.                 UriTemplateMatch UriTemplateMatch { get; set; }
  17.                 string UserAgent { get; }
  18.         }
  19. }
Add Comment
Please, Sign In to add comment