2009-04-08 Atsushi Enomoto <atsushi@ximian.com>
authorAtsushi Eno <atsushieno@gmail.com>
Wed, 8 Apr 2009 03:44:14 +0000 (03:44 -0000)
committerAtsushi Eno <atsushieno@gmail.com>
Wed, 8 Apr 2009 03:44:14 +0000 (03:44 -0000)
* NetPeerTcpBinding.cs : ListenIPAddress is IPAddress here too.

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

mcs/class/System.ServiceModel/System.ServiceModel/ChangeLog
mcs/class/System.ServiceModel/System.ServiceModel/NetPeerTcpBinding.cs

index 18ea46c51d89aff96fdbad3906adceb26786a006..708432979c56b9d2413feb0abc4c6ce593e3b931 100755 (executable)
@@ -1,3 +1,7 @@
+2009-04-08  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * NetPeerTcpBinding.cs : ListenIPAddress is IPAddress here too.
+
 2009-04-08  Atsushi Enomoto  <atsushi@ximian.com>
 
        * PeerTransportSecuritySettings.cs : new.
index 038100fd17fe1fbce8e19ec264ddcab6e750ae8d..fc6b8739ad131f0f891de11436615c6c6d9910e8 100644 (file)
@@ -29,6 +29,7 @@
 //
 using System;
 using System.Collections.Generic;
+using System.Net;
 using System.Net.Security;
 using System.ServiceModel.Channels;
 using System.ServiceModel.Description;
@@ -42,7 +43,6 @@ namespace System.ServiceModel
                IBindingDeliveryCapabilities, IBindingMulticastCapabilities,
                ISecurityCapabilities, IBindingRuntimePreferences
        {
-               string listen_ip_address;
                long max_buffer_pool_size = 0x80000;
                long max_recv_message_size = 0x10000;
                bool msg_auth;
@@ -62,10 +62,7 @@ namespace System.ServiceModel
                        throw new NotImplementedException ();
                }
 
-               public string ListenIPAddress {
-                       get { return listen_ip_address; }
-                       set { listen_ip_address = value; }
-               }
+               public IPAddress ListenIPAddress { get; set; }
 
                public long MaxBufferPoolSize {
                        get { return max_buffer_pool_size; }