Contacts ( Clientside )

All the functions of contacts

aphone.Contacts.GetName(int id)

Return the name of the contact, nil if the contact doesn't exist

aphone.Contacts.Add(int id, string name)

Add the id + name into the contact table. Will return true if contact already exist.

aphone.Contacts.ChangeName(int id, string name)

Change the name of the contact, will make nothing if the contact doesn't exist

aphone.Contacts.Remove(int id)

Remove the contact from the contact list

aphone.Contacts.GetContacts()

Return contact list

Last updated