CommonTransportKeys.cs 481 B

12345678910111213141516171819202122
  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. public CommonTransportKeys ()
  17. {
  18. }
  19. }
  20. }