Răsfoiți Sursa

* BinaryServerFormatterSinkProvider.cs: Removed TODO.
* CommonTransportKeys.cs: Added some internal transport keys.

svn path=/trunk/mcs/; revision=20965

Lluis Sanchez 22 ani în urmă
părinte
comite
37cd4be5ea

+ 1 - 2
mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels/BinaryServerFormatterSinkProvider.cs

@@ -61,10 +61,9 @@ namespace System.Runtime.Remoting.Channels
 			return result;
 		}
 
-		[MonoTODO]
 		public void GetChannelData (IChannelDataStore channelData)
 		{
-			// no idea why we need this
+			// Nothing to add here
 		}
 	}
 }

+ 5 - 0
mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels/ChangeLog

@@ -1,3 +1,8 @@
+2003-12-10  Lluis Sanchez Gual  <[email protected]>
+
+	* BinaryServerFormatterSinkProvider.cs: Removed TODO.
+	* CommonTransportKeys.cs: Added some internal transport keys.
+
 2003-11-21  Lluis Sanchez Gual  <[email protected]>
 
 	* BinaryClientFormatterSinkProvider.cs, BinaryServerFormatterSinkProvider.cs,

+ 10 - 0
mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.Channels/CommonTransportKeys.cs

@@ -15,6 +15,16 @@ namespace System.Runtime.Remoting.Channels
 		public const string IPAddress = "__IPAddress";
 		public const string RequestUri = "__RequestUri";
 		
+		internal const string RequestVerb = "__RequestVerb";
+		internal const string HttpVersion = "__HttpVersion";
+		internal const string ContentType = "Content-Type";
+		internal const string UserAgent = "User-Agent";
+		internal const string Host = "Host";
+		internal const string SoapAction = "SOAPAction";
+		
+		internal const string HttpStatusCode = "__HttpStatusCode";
+		internal const string HttpReasonPhrase = "__HttpReasonPhrase";
+		
 		public CommonTransportKeys ()
 		{
 		}