使用UISuppressed创建会议 [英] Create a conference with UISuppressed

查看:91
本文介绍了使用UISuppressed创建会议的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好!

我目前正在尝试使用Lync SDK创建会议。创建此会议后,我必须获取其URI,但ConversationProperty.ConferencingUri始终保持为空(即使人们已加入对话)。

I'm currently trying to create a conference with Lync SDK. Once this conference is created, I have to get its URI, but ConversationProperty.ConferencingUri always stays empty (even if people have joined the conversation).

你能帮助我吗?

(PS:对不起,如果我的英语不好,希望你能理解;))

(PS:Sorry if my english is bad, hope you'll understand ;) )

推荐答案

您是否正在处理Conversation.PropertyChanged事件? 如果没有,那么您应该在ConversationManger.ConversationAdded中注册该事件。 事件回调方法如下所示:

Are you handling the Conversation.PropertyChanged event?  If not, then you should register for the event in ConversationManger.ConversationAdded.  The event callback method would look like this:

        void Conversation_PropertyChanged(object sender, ConversationPropertyChangedEventArgs e)
        {
            if (e.Property == ConversationProperty.ConferencingUri)
            {
                Console.WriteLine("Conference URI: " + e.Value);
            }
        }





这篇关于使用UISuppressed创建会议的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆