Netronics.Properties.SetIpEndPoint C# (CSharp) 메소드

SetIpEndPoint() 공개 메소드

public SetIpEndPoint ( IPEndPoint endPoint ) : Properties
endPoint System.Net.IPEndPoint
리턴 Properties
        public Properties SetIpEndPoint(IPEndPoint endPoint)
        {
            IpEndPoint = endPoint;
            return this;
        }

Usage Example

예제 #1
0
 public static Properties CreateProperties(IPEndPoint ipEndPoint, ChannelFactory factory)
 {
     var properties = new Properties();
     properties.SetIpEndPoint(ipEndPoint);
     properties.ChannelFactory = factory;
     return properties;
 }
All Usage Examples Of Netronics.Properties::SetIpEndPoint