CommonTransportKeys.cs 401 B

123456789101112131415161718192021
  1. //
  2. // System.Runtime.Remoting.Channels.CommonTransportKeys.cs
  3. //
  4. // Author: Rodrigo Moya ([email protected])
  5. //
  6. // 2002 (C) Copyright, Ximian, Inc.
  7. //
  8. namespace System.Runtime.Remoting.Channels
  9. {
  10. public class CommonTransportKeys
  11. {
  12. public const string ConnectionId = "";
  13. public const string IPAddress = "";
  14. public const string RequestUri = "";
  15. public CommonTransportKeys ()
  16. {
  17. }
  18. }
  19. }