2013-10-21 2 views

답변

0

대부분의 Lync 연락처가 현재 오프라인 상태이지만 오디오 장치 자체가 아니라 AV 방식의 속성에 영향을 미치려고했기 때문에 테스트 할 기회가 없었습니까? 이 같은

뭔가 : -

void ConversationManager_ConversationAdded(object sender, Microsoft.Lync.Model.Conversation.ConversationManagerEventArgs e) 
    { 
     var audioProperty = e.Conversation.Modalities[Microsoft.Lync.Model.Conversation.ModalityTypes.AudioVideo].Properties; 
     audioProperty[Microsoft.Lync.Model.Conversation.ModalityProperty.AVModalityAudioCaptureMute] = true; 
    } 

나는 비열한이 값은 읽기 전용 될 수 있다는 느낌,하지만 해볼만 한 가치를했습니다.

e.Conversation.SelfParticipant.BeginSetMute(true, EndSetMute, null); 

미안 테스트 할 수 없습니다 - :

비슷한 맥락 함께

, 당신은 내가 어쩌면 회의에서 사용하는 제한 두려워하지만 대화가 직접 다음을 사용하여 적어도 통해 음소거에 영향을 줄 수 있습니다 오늘 밤에, 당신이 어떻게 일어나는지 알려주세요.