社内の 2 人のランダムなユーザー間で会話を開始するアプリケーションを開発しようとしています。OCS 2007 R2 を使用しています。
以下のコードを使用して UCMA 2.0 経由でこの会話を作成していますが、作成された会話の長さを 3 分に制限する方法があるかどうかはわかりません。そう
- UCMA 2.0 を介してこのタスクを達成する方法はありますか?
- この会話を 3 分で作成する同じボットを介して会話をキャンセルする以外のオプションは何ですか?
- Office Communicator の会話画面をカスタマイズする方法はありますか? では、会話の残り時間を示すカウンターを表示できますか? (いいね: 残り 20 秒)
とにかくありがとう。
UserEndpointSettings userEndpointSettings = new UserEndpointSettings(_userURI, _userServer);
userEndpointSettings.Credential = _credential;
_userEndpoint = new UserEndpoint(_collabPlatform, userEndpointSettings);
_userEndpoint.BeginEstablish(EndEndpointEstablish, _userEndpoint);
ConversationSettings convSettings = new ConversationSettings();
convSettings.Priority = _conversationPriority.Normal;
convSettings.Subject = "Your trip plan";
Conversation conversation = new Conversation(_userEndpoint, convSettings);