Input name and email handler.
More...
#include <meeting_configuration_interface.h>
Input name and email handler.
Definition at line 183 of file meeting_configuration_interface.h.
◆ ~IMeetingInputUserInfoHandler()
| virtual IMeetingInputUserInfoHandler::~IMeetingInputUserInfoHandler |
( |
| ) |
|
|
inlinevirtual |
◆ Cancel()
| virtual void IMeetingInputUserInfoHandler::Cancel |
( |
| ) |
|
|
pure virtual |
Ignore the prompt of completing the information.
- Note
- The SDK will destroy this object instance after calling this function.
◆ CanModifyDefaultDisplayName()
| virtual bool IMeetingInputUserInfoHandler::CanModifyDefaultDisplayName |
( |
| ) |
|
|
pure virtual |
Determines whether the user can modify default display name.
- Returns
- true if the user can modify default display name. Otherwise, false.
◆ GetDefaultDisplayName()
| virtual const zchar_t * IMeetingInputUserInfoHandler::GetDefaultDisplayName |
( |
| ) |
|
|
pure virtual |
Gets default display name.
- Returns
- If the function succeeds, it returns the default display name. Otherwise, this function fails and returns nullptr.
◆ InputUserInfo()
Completes the name and email information.
- Parameters
-
| name | The user's name. |
| email | The user's email. |
- Returns
- If the function succeeds, the return value is SDKERR_SUCCESS. Otherwise, this function returns an error.
- Note
- The SDK will destroy this object instance after calling this function. Supplement with the correct information.
◆ IsValidEmail()
| virtual bool IMeetingInputUserInfoHandler::IsValidEmail |
( |
const zchar_t * | email | ) |
|
|
pure virtual |
Determines whether the inputted email is a valid email format. The email must meet the email format requirements. The email input by the logged in user must be the email of the logged in account.
- Parameters
-
| email | The email address to validate. |
- Returns
- true if the email input is valid. Otherwise, false.