Add more internal types for IVT for SDK assemblies.
authorAlan McGovern <alan.mcgovern@gmail.com>
Thu, 14 Apr 2011 10:23:03 +0000 (11:23 +0100)
committerAlan McGovern <alan.mcgovern@gmail.com>
Thu, 14 Apr 2011 10:23:03 +0000 (11:23 +0100)
mcs/class/System.ServiceModel/Dummy_2_1.cs

index dea58b95b857a984d19eafb9eb63cd907a8bd3d5..01f20d08c59d575ee9575ad761ae5e63dea084b5 100644 (file)
@@ -4,6 +4,7 @@ using System.Runtime.Serialization;
 using System.Runtime.CompilerServices;
 using System.ServiceModel.Channels;
 using System.ServiceModel.Dispatcher;
+using System.Text;
 using System.Xml;
 
 namespace System.Runtime.CompilerServices
@@ -50,6 +51,17 @@ namespace System.ServiceModel
 namespace System.ServiceModel.Channels
 {
        public interface ITransportTokenAssertionProvider {}
+       public static class UrlUtility {
+               public static string UrlEncode (string s, Encoding e)
+               {
+                       return s;
+               }
+
+               public static string UrlDecode (string s, Encoding e)
+               {
+                       return s;
+               }
+       }
 }
 namespace System.ServiceModel.Channels.Http
 {