Meeting SDK for macOS API Reference
Loading...
Searching...
No Matches
ZoomSDKMeetingInputUserInfoHandler Class Reference

Interface for handling user input when joining a meeting. More...

#include <ZoomSDKMeetingService.h>

Inherits NSObject.

Instance Methods

(BOOL) - isValidEmail:
 Checks whether the inputed email is a valid email format.
 
(ZoomSDKError- inputUserInfo:email:
 Input user info.
 
(void) - cancel
 Cancels to join meeting.
 

Properties

NSString * defaultDisplayName
 Gets default display name.
 
BOOL canModifyDefaultDisplayName
 Checks whether the user can modify default display name.
 

Detailed Description

Interface for handling user input when joining a meeting.

Definition at line 297 of file ZoomSDKMeetingService.h.

Method Documentation

◆ cancel

- (void) cancel

Cancels to join meeting.

◆ inputUserInfo:email:

- (ZoomSDKError) inputUserInfo: (NSString *) name
email: (NSString *) email 

Input user info.

Parameters
nameThe display name to input.
emailThe email to input.
Returns
If the function succeeds, it returns ZoomSDKError_Success. Otherwise, this function returns an error.

◆ isValidEmail:

- (BOOL) isValidEmail: (NSString *) email

Checks whether the inputed email is a valid email format.

Parameters
emailThe email must meet the email format requirements. The email inputed by the logged-in user must be the email.
Returns
YES If the email input is valid. Otherwise, NO.
Note
The email must meet the email format requirements. The email input by the logged in user must be the same as the user account.

Property Documentation

◆ canModifyDefaultDisplayName

- (BOOL) canModifyDefaultDisplayName
readnonatomicassign

Checks whether the user can modify default display name.

Definition at line 307 of file ZoomSDKMeetingService.h.

◆ defaultDisplayName

- (NSString*) defaultDisplayName
readnonatomiccopy

Gets default display name.

Definition at line 302 of file ZoomSDKMeetingService.h.