Meeting SDK for Linux API Reference
Loading...
Searching...
No Matches
IWebinarInputScreenNameHandler Class Referenceabstract

Webinar input screen name handler. More...

#include <meeting_configuration_interface.h>

Public Member Functions

virtual SDKError InputName (const zchar_t *screenName)=0
 Input screen name to join webinar.
 
virtual SDKError Cancel ()=0
 Cancel to join webinar.
 
virtual ~IWebinarInputScreenNameHandler ()
 

Detailed Description

Webinar input screen name handler.

Definition at line 147 of file meeting_configuration_interface.h.

Constructor & Destructor Documentation

◆ ~IWebinarInputScreenNameHandler()

virtual IWebinarInputScreenNameHandler::~IWebinarInputScreenNameHandler ( )
inlinevirtual

Definition at line 165 of file meeting_configuration_interface.h.

165{};

Member Function Documentation

◆ Cancel()

virtual SDKError IWebinarInputScreenNameHandler::Cancel ( )
pure virtual

Cancel to join webinar.

Returns
If the function succeeds, the return value is SDKErr_Success. Otherwise failed. To get extended error information, see SDKError enum.
Note
The SDK will destroy this object instance after calling this function.

◆ InputName()

virtual SDKError IWebinarInputScreenNameHandler::InputName ( const zchar_t * screenName)
pure virtual

Input screen name to join webinar.

Parameters
screenNameThe display name for the webinar.
Returns
If the function succeeds, the return value is SDKErr_Success. Otherwise failed. To get extended error information, see SDKError enum.
Note
The SDK will destroy this object instance after calling this function. Supplement with the correct information.