CommonTransportKeys.cs 917 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // System.Runtime.Remoting.Channels.CommonTransportKeys.cs
  3. //
  4. // Author: Rodrigo Moya ([email protected])
  5. // Lluis Sanchez Gual ([email protected])
  6. //
  7. // 2002 (C) Copyright, Ximian, Inc.
  8. //
  9. namespace System.Runtime.Remoting.Channels
  10. {
  11. public class CommonTransportKeys
  12. {
  13. public const string ConnectionId = "__ConnectionId";
  14. public const string IPAddress = "__IPAddress";
  15. public const string RequestUri = "__RequestUri";
  16. internal const string RequestVerb = "__RequestVerb";
  17. internal const string HttpVersion = "__HttpVersion";
  18. internal const string ContentType = "Content-Type";
  19. internal const string UserAgent = "User-Agent";
  20. internal const string Host = "Host";
  21. internal const string SoapAction = "SOAPAction";
  22. internal const string HttpStatusCode = "__HttpStatusCode";
  23. internal const string HttpReasonPhrase = "__HttpReasonPhrase";
  24. public CommonTransportKeys ()
  25. {
  26. }
  27. }
  28. }