Meeting SDK for Linux API Reference
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
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 107 of file meeting_configuration_interface.h.

Constructor & Destructor Documentation

◆ ~IWebinarInputScreenNameHandler()

virtual IWebinarInputScreenNameHandler::~IWebinarInputScreenNameHandler ( )
inlinevirtual

Definition at line 123 of file meeting_configuration_interface.h.

123{};

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.
Remarks
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.
Remarks
The SDK will destroy this object instance after calling this function. Supplement with the correct information.