Brunet.Connections.LinkMessage.LinkMessage C# (CSharp) Method

LinkMessage() public method

public LinkMessage ( string connection_type, NodeInfo local, NodeInfo remote, string token ) : System
connection_type string
local NodeInfo
remote NodeInfo
token string
return System
    public LinkMessage(string connection_type, NodeInfo local, NodeInfo remote, string token)
    {
      _attributes = new StringDictionary();
      _attributes["type"] = String.Intern( connection_type );
      _local_ni = local;
      _remote_ni = remote;
      _token = token;
    }
    public LinkMessage(StringDictionary attributes, NodeInfo local, NodeInfo remote, string token)

Same methods

LinkMessage::LinkMessage ( ConnectionType t, NodeInfo local, NodeInfo remote, string token ) : System
LinkMessage::LinkMessage ( IDictionary ht ) : System
LinkMessage::LinkMessage ( StringDictionary attributes, NodeInfo local, NodeInfo remote, string token ) : System