| 12345678910111213141516171819202122 |
- //
- // System.Runtime.Remoting.Channels.CommonTransportKeys.cs
- //
- // Author: Rodrigo Moya ([email protected])
- // Lluis Sanchez Gual ([email protected])
- //
- // 2002 (C) Copyright, Ximian, Inc.
- //
- namespace System.Runtime.Remoting.Channels
- {
- public class CommonTransportKeys
- {
- public const string ConnectionId = "__ConnectionId";
- public const string IPAddress = "__IPAddress";
- public const string RequestUri = "__RequestUri";
-
- public CommonTransportKeys ()
- {
- }
- }
- }
|