2

我正在尝试在 Lync SDK 2013 中运行“加入会议示例”。示例中的以下代码引发异常“值不在预期范围内。”。

string conferenceUrl = MeetUrl.Text; // in the form of "conf:sip:wewa@microsoft.com;gruu;opaque=app:conf:focus:id:4FNRHN16";
IAsyncResult ar = Automation.BeginStartConversation(conferenceUrl, 0, StartConversation_Callback, null);

我以“conf:sip:wewa@microsoft.com;gruu;opaque=app:conf:focus:id:4FNRHN16”的格式传递 ConferenceUrl。它不断抛出相同的错误。我是不是错过了什么。

4

1 回答 1

3

这是SDK. 如果您"?"在 末尾添加一个conference uri,您的代码将起作用。

conf:sip:rojimene@microsoft.com;gruu;opaque=app:conf:focus:id:HELLOWORLD?
于 2015-04-30T20:41:58.973 回答