Ejemplo n.º 1
0
        public void getChannelDetails()
        {
            ALChannelService channelService = new ALChannelService();

            channelService.GetChannelInformation(1564195, "1564195", (ALChannel channelObject) =>
            {
                Console.WriteLine("Launching chat directly without registration ");
            });
        }
        /**
         * method you can use to build your contacts group and show same on contact list.
         * It might be based on company, event etc.
         */
        public void AddToMembersToContactGroupList(NSMutableArray memberArray, String contactGroupId)
        {
            short type = 9;            //For public contact group

            ALChannelService.AddMemberToContactGroupOfType(contactGroupId, memberArray, type,
                                                           (ALAPIResponse response, NSError error) =>
            {
                Console.WriteLine("Working Add member to group");
            });
        }