Re: Get friends list to show in web page

  •  01-18-2008, 7:27 AM

    Re: Get friends list to show in web page

    A-1,
     
    You can do something like this:
    CuteChat.ChatPortal portal=CuteChat.ChatSystem.Instance.GetCurrentPortal();
       lock(portal)
       {
        CuteChat.ChatIdentity identity=new CuteChat.AppChatIdentity("nickname",false,"loginname","0.0.0.0");
        CuteChat.IChatUserInfo[] contacts=portal.DataManager.GetContacts(identity);
        foreach(CuteChat.IChatUserInfo contact in contacts)
        {
         //...contact.Property...
        }
       }
     
    Regards , Terry .
     
View Complete Thread