How to use IMeetingUIElemConfiguration in zoom windows c# sdk

I am new to c# and want to ask a very naive question that how can i use IMeetingUIElemConfiguration in my start_join_meeting.xaml.cs file.

Currently I have written the following line to hide the invite button from ui-
ZOOM_SDK_DOTNET_WRAP.CZoomSDKeDotNetWrap.Instance.GetMeetingServiceWrap().GetMeetingConfiguration().EnableInviteButtonOnMeetingUI(false);

But i want to hide the info button which could be hidden by using IMeetingUIElemConfiguration.HideMeetingInfoOnMeetingUI(bool bHide), But I have no idea how could i write this line .

Hi @anuragnagarkota,

Thanks for the post. The C# wrapper is a wrapper over the Windows SDK(written in C++) and it is a community project, so it might not include all interfaces that are available in Windows SDK, such as the HideMeetingInfoOnMeetingUI interface. However, if an interface is available in Windows SDK, it is possible to make a bridge call in the C# wrapper. Please follow the instructions here:[Windows SDK, C#] I cant found AskAttendeeToStartVideo in DLL library here to add the bridge call in the C# wrapper and then you could use this interface in the C# wrapper.

Thanks!

Hi @carson.zoom
It would be very helpful if you provide the updated C# wrapper which contains the following three features-

  1. Hide MeetingInfo button image
  2. Hide invite link image

Hi @anuragnagarkota,

Thanks for the reply. The C# wrapper is a community project so we do not have a dedicated resource on updating this. I will forward your request to the engineering team and we will contribute to this community project when we have the bandwidth.

Thanks!

Thanks @carson.zoom

We are eagerly waiting for this. How much time could we expect ?

Hi @carson.zoom
I have rebuilded the c# wrapper and i am now able to get rid of that info button.

But still a problem exists. I am not able to found any interface to hide the copy url link image

Please help

Please help us on hiding meeting info from User participants screen

Hey @ICAI,

Have you tried using the HideMeetingInfoOnMeetingUI interface?

Thanks!
Michael

Hi @Michael_Condon ,

I found a problem with the interface HideMeetingInfoOnMeetingUI, it is not hiding the Meeting Info Dialog in the latest version of Windows SDK v5.9.1.2601

Check the image below, I have written the code but the Meeting Info is not hiding…
ZOOM_SDK_DOTNET_WRAP.CZoomSDKeDotNetWrap.Instance.GetMeetingServiceWrap().GetMeetingConfiguration().HideMeetingInfoOnMeetingUI(true);

Thanks
SANIL T R

Hi @saniltr,

Thanks for bringing this up. Based on my testing, this does appear to be something going on at the native C++ SDK layer, so it does not seem to be something that could be resolved within the C# wrapper. We’ll investigate this and get back to you as soon as we have any updates.

Thanks!

Hi @jon.zoom ,

Since the HideMeetingInfoOnMeetingUI interface is not working as expected in the latest version Windows SDK v5.9.1.2601, I checked with the older version Windows SDK v5.7.6.1081. It’s working fine.

So now I’m going to use the Windows SDK v5.7.6.1081 for integrating the Zoom into my application.

If there is something to be updated in the latest version, let me know.

Thanks,
SANIL T R

Hi @saniltr,

Thanks for confirming that this works properly in v5.7.6. When you are using this function in v5.9.1, can you please confirm whether or not you have called this before starting/joining the meeting?

Thanks!