* BinaryServerFormatterSink.cs: Fixed argument name to match MS.
[mono.git] / mcs / class / System.Runtime.Remoting / System.Runtime.Remoting.Channels / BinaryClientFormatterSinkProvider.cs
index 5ad307edbe9c5aee77e4c363c48d84067439f502..64482b84f2e4b06c58919d014e9c86b48059614c 100644 (file)
@@ -37,7 +37,12 @@ namespace System.Runtime.Remoting.Channels
        {
                IClientChannelSinkProvider next = null;
                BinaryCore _binaryCore;
+
+#if NET_1_1
+               static string[] allowedProperties = new string [] { "includeVersions", "strictBinding", "typeFilterLevel" };
+#else
                static string[] allowedProperties = new string [] { "includeVersions", "strictBinding" };
+#endif
 
                public BinaryClientFormatterSinkProvider ()
                {