ZOOM Windows SDK
5.2.42037.1112
|
Meeting q&a callback event. More...
#include <meeting_qa_ctrl_interface.h>
Public Member Functions | |
virtual void | OnQAConnectStatus (QAConnectStatus connectStatus)=0 |
Callback event of Q&A connecting status. More... | |
virtual void | OnAddQuestion (const wchar_t *questionID, bool bSuccess)=0 |
Callback event of adding question. More... | |
virtual void | OnAddAnswer (const wchar_t *answerID, bool bSuccess)=0 |
Callback event of adding answer. More... | |
virtual void | OnQuestionMarkedAsDismissed (const wchar_t *question_id)=0 |
Callback event of marking question as dismissed. More... | |
virtual void | OnReopenQuestion (const wchar_t *question_id)=0 |
Callback event of reopening question. More... | |
virtual void | OnReceiveQuestion (const wchar_t *questionID)=0 |
Callback event of receiving question. More... | |
virtual void | OnReceiveAnswer (const wchar_t *answerID)=0 |
Callback event of receiving answer. More... | |
virtual void | OnUserLivingReply (const wchar_t *questionID)=0 |
Callback event of user answering live. More... | |
virtual void | OnUserEndLiving (const wchar_t *questionID)=0 |
Callback event of end of user answering live. More... | |
virtual void | OnUpvoteQuestion (const wchar_t *question_id, bool order_changed)=0 |
Callback event of voting up question. More... | |
virtual void | OnRevokeUpvoteQuestion (const wchar_t *question_id, bool order_changed)=0 |
Callback event of revoking voting up question. More... | |
virtual void | OnDeleteQuestion (IList< const wchar_t *> *lstQuestionID)=0 |
Callback event of deleting question(s). More... | |
virtual void | OnDeleteAnswer (IList< const wchar_t *> *lstAnswerID)=0 |
Callback event of deleting answer(s). More... | |
virtual void | OnAllowAskQuestionAnonymousStatus (bool bEnabled)=0 |
Callback event of enabling to ask question anonymously. More... | |
virtual void | OnAllowAttendeeViewAllQuestionStatus (bool bEnabled)=0 |
Callback event of enabling attendee to view all questions. More... | |
virtual void | OnAllowAttendeeVoteupQuestionStatus (bool bEnabled)=0 |
Callback event of enabling attendee to vote up questions. More... | |
virtual void | OnAllowAttendeeCommentQuestionStatus (bool bEnabled)=0 |
Callback event of enabling attendee to comment questions. More... | |
virtual void | OnRefreshQAData ()=0 |
Callback event of refreshing q&a data. | |
Meeting q&a callback event.
|
pure virtual |
Callback event of adding answer.
answerID | The answer id. |
bSuccess | Add answer successfully or not. |
|
pure virtual |
Callback event of adding question.
questionID | The question id. |
bSuccess | Add question successfully or not. |
|
pure virtual |
Callback event of enabling to ask question anonymously.
bEnabled | Enbabled or not. |
|
pure virtual |
Callback event of enabling attendee to comment questions.
bEnabled | Enbabled or not. |
|
pure virtual |
Callback event of enabling attendee to view all questions.
bEnabled | Enbabled or not. |
|
pure virtual |
Callback event of enabling attendee to vote up questions.
bEnabled | Enbabled or not. |
|
pure virtual |
Callback event of deleting answer(s).
lstAnswerID | The list of answer ids. |
|
pure virtual |
Callback event of deleting question(s).
lstQuestionID | The list of question ids. |
|
pure virtual |
Callback event of Q&A connecting status.
connectStatus | The value of Q&A connecting status. For more details, see QAConnectStatus enum. |
|
pure virtual |
Callback event of marking question as dismissed.
question_id | The question id. |
|
pure virtual |
Callback event of receiving answer.
answerID | The answer id. |
|
pure virtual |
Callback event of receiving question.
questionID | The question id. |
|
pure virtual |
Callback event of reopening question.
question_id | The question id. |
|
pure virtual |
Callback event of revoking voting up question.
question_id | The question id. |
order_changed | The order of the question in question list is changed or not. |
|
pure virtual |
Callback event of voting up question.
question_id | The question id. |
order_changed | The order of the question in question list is changed or not. |
|
pure virtual |
Callback event of end of user answering live.
questionID | The question id. |
|
pure virtual |
Callback event of user answering live.
questionID | The question id. |