Prechádzať zdrojové kódy

Forgot to commit this for acs last night. sorry.

2002-08-01  Duncan Mak  <[email protected]>

	* IChannel.cs:
	(Parse): Added.

svn path=/trunk/mcs/; revision=6319
Duncan Mak 23 rokov pred
rodič
commit
1df5bfa6af

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

@@ -5,6 +5,9 @@
 
 2002-08-01  Duncan Mak  <[email protected]>
 
+	* IChannel.cs:
+	(Parse): Added.
+
 	* BinaryServerFormatterSink.cs: 
 	* SoapServerFormatterSink.cs: Fixed typo.
 

+ 2 - 0
mcs/class/corlib/System.Runtime.Remoting.Channels/IChannel.cs

@@ -13,5 +13,7 @@ namespace System.Runtime.Remoting.Channels {
 		string ChannelName { get; }
 
 		int ChannelPriorirty { get; }
+
+		string Parse (string url, out string objectURI);
 	}
 }