コード例 #1
0
 void SendConversationInvite()
 {
     if (TwilioClient != null)
     {
         /*
          * The createConversation method attempts to create and connect to a Conversation. The 'localStatusChanged' delegate method can be used to track the success or failure of connecting to the newly created Conversation.
          */
         outgoingInvite = TwilioClient.InviteToConversation(InviteeIdentity, localMedia, acceptHandler);
     }
 }