3
我在Win7 64位機器上使用.NET 4.0。
我正在嘗試在我「關注」Skype中的羣聊時獲取羣組名稱。當我專注於羣聊時,我在ContactsFocused(字符串用戶名)中接收到的回撥是用戶名的空字符串。回調被執行,但有一個空的參數。 的代碼,我寫道:如何使用C#中的Skype4COM API獲得重點組名稱
m_skype = new Skype();
....
m_skype.ContactsFocused += Skype_ContactsFocused;
....
private void Skype_ContactsFocused(string Username)
{
//Console.WriteLine("Skype_ContactsFocused is {0}", Username);
}
當聚焦單個聯繫人此代碼工作正常,我得到了Skype_ContactFocused回調使用正確的名稱作爲參數的通知,但組聊天此名稱爲空。 我的問題是有沒有辦法獲得「集中」組名?
感謝