Brunet.Transport.UdpEdge.UdpEdge C# (CSharp) Метод

UdpEdge() публичный Метод

public UdpEdge ( IEdgeSendHandler send_cb, bool is_in, System remote_end_point, System local_end_point, int id, int remoteid ) : System
send_cb IEdgeSendHandler
is_in bool
remote_end_point System
local_end_point System
id int
remoteid int
Результат System
    public UdpEdge(IEdgeSendHandler send_cb,
                   bool is_in,
                   System.Net.IPEndPoint remote_end_point,
                   System.Net.IPEndPoint local_end_point,
                   int id, int remoteid) : base(send_cb, is_in)
    {
      //This will update both the end point and the remote TA
      this.End = remote_end_point;
      _localta = TransportAddressFactory.CreateInstance(TAType, (IPEndPoint) local_end_point);
      _id = id;
      _remoteid = remoteid;
    }
UdpEdge