isContentShareSupported, boolean property which returns true when the current endpoint can share their screen. Returns false when either
receivingContentShare, boolean property provides the state of the content receive.
This value will be true, if this endpoint is receiving the content and If there is no content being received, this value will be false
Allows observing changes to properties. Provide the property which you are interested in and a callback. Whenever the property value changes, you will be notified via the callback.
Usage:
sdk.meetingService.contentService.observe("contentShareState", function() {
console.info("Connection state is changed to : ", sdk.meetingService.contentService.contentShareState)
});
The name of the property to observe for changes.
on change event for the property.
To start sharing the content from the meeting Technical limitation : Not Supported for safari or Mobile browsers. Please call isContentShareSupported to check if screen share is possible before calling this function
To stop an active content sharing in the meeting
Generated using TypeDoc
contentShareState, state of whether you are sharing content in a meeting. This value will be "started", if this endpoint is sending content, "stopped" if you are not and "cancelled" when we requested screen share but the user cancelled it from the native content share dialog. To get "cancelled" state, we need to observe the change in value of contentShareState, as this immediately changes to "stopped".