コード例 #1
0
 public static EndPoint EnsureSource(this IPortBound c, localEndPoint.SourceStyle style = localEndPoint.SourceStyle.Private)
 {
     if (c.source == null)
     {
         c.setLocalSource(0, style);
     }
     return(c.source);
 }
コード例 #2
0
 public static void setLocalSource(this IPortBound c, int port, localEndPoint.SourceStyle style = localEndPoint.SourceStyle.Private)
 {
     c.source = localEndPoint.LocalEndPoint(port, style);
 }