Brunet.Connections.LocalConnectionOverlord.GetInformation C# (CSharp) Метод

GetInformation() защищенный Метод

protected GetInformation ( ) : Hashtable
Результат System.Collections.Hashtable
    protected Hashtable GetInformation()
    {
      Hashtable ht = new Hashtable(3);
      IList tas = _node.LocalTAs;
      string[] tas_string = new string[tas.Count];
      for(int i = 0; i < tas.Count; i++) {
        tas_string[i] = tas[i].ToString();
      }

      ht["tas"] = tas_string;
      ht["address"] = _node.Address.ToString();
      ht["namespace"] = _node.Realm;
      return ht;
    }