是否可以限制OCS中的会话持续时间?

时间:2011-05-17 22:36:08

标签: c# sdk ocs office-communicator ucma2.0

我正在尝试开发一个应用程序,它启动公司内2个随机用户之间的对话。我们正在使用OCS 2007 R2。

我正在使用以下代码通过UCMA 2.0创建此对话,但我不确定是否有办法将创建的对话持续时间限制为3分钟。所以

  1. 有没有办法通过UCMA 2.0完成此任务?
  2. 有什么其他选项,而不是通过同一个机器人取消对话,该机器人会在3分钟内创建此对话?
  3. 有没有办法在Office Communicator中自定义“对话”屏幕?所以我可以显示一个计数器,显示会话中的剩余持续时间吗?(比如:20秒左右)
  4. 非常感谢。

    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);
    

1 个答案:

答案 0 :(得分:0)

最好用MS开票。