Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.ServiceModel/System.ServiceModel.Channels/Binding.cs')
-rw-r--r--mcs/class/System.ServiceModel/System.ServiceModel.Channels/Binding.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/class/System.ServiceModel/System.ServiceModel.Channels/Binding.cs b/mcs/class/System.ServiceModel/System.ServiceModel.Channels/Binding.cs
index 12c8ed6af07..9e66babb71a 100644
--- a/mcs/class/System.ServiceModel/System.ServiceModel.Channels/Binding.cs
+++ b/mcs/class/System.ServiceModel/System.ServiceModel.Channels/Binding.cs
@@ -133,7 +133,7 @@ namespace System.ServiceModel.Channels
return CreateContext (parameters).BuildInnerChannelFactory<TChannel> ();
}
-#if !NET_2_1
+#if !MOBILE
public virtual IChannelListener<TChannel>
BuildChannelListener<TChannel> (
Uri listenUriBaseAddress,
@@ -267,7 +267,7 @@ namespace System.ServiceModel.Channels
return CreateContext (parameters).CanBuildInnerChannelFactory<TChannel> ();
}
-#if !NET_2_1
+#if !MOBILE
public bool CanBuildChannelListener<TChannel> (
params object [] parameters)
where TChannel : class, IChannel