Example #1
0
        public string GetAllServicesString(Matbot.Client.ChatItemId id)
        {
            string s = "";

            foreach (Service ser in RunningServices)
            {
                if (id == null)
                {
                    s += ser.ToString() + "\n";
                }
                else
                {
                    s += ser.ToString(id) + "\n";
                }
            }
            return(s);
        }
Example #2
0
 /// <summary>
 /// Returns string describing the service with respect to a Chat.
 /// </summary>
 public virtual string ToString(Matbot.Client.ChatItemId chatId)
 {
     return(ToString());
 }