I am trying to create a Lync-Meeting programmatically using UCMA/Lync SDK. While the creation of a conference is pretty straight forward, it is one of my requirements to disable/block the video broadcast of the attendees by default. This can easily be achieved by using the UI (see "Do you want to limit participation?") But how can I do this using code?
Thanks a lot!
From the Lync Client Sdk you can toggle the conference "attendee video mute" by setting the ConversationProperty.ConferenceVideoHardMute on the Conversation instance.
Can example of settings the property where "value" is either true/false, where true == mute attendee video and false == unmute attendee video.
or if you prefer a Task based version: