Skip to main content
Version: 5.11.4

SendQuestion

public BackendReturnObject SendQuestion(QuestionType questionType, string title, string content);

Parameters

ValueTypeDescription
questionTypeQuestionTypeInquiry type
titlestringInquiry title
contentstringInquiry content

QuestionType

TypeDescription
QuestionType.AccountAccount
QuestionType.PaymentPayment
QuestionType.RestoreRecovery
QuestionType.GameQuestionGame Inquiry
QuestionType.ReportReport
QuestionType.SetupOrExecuteInstall/Execute
QuestionType.BugBugs
QuestionType.EventEvents
QuestionType.SuggestionsSuggestions
QuestionType.EtcOther

Description

Inquiries are sent. The inquiry type can be assigned with enum QuestionType.
The pre-upload function is currently not available.

Example

Synchronous

Backend.Question.SendQuestion(QuestionType.Account, "Title", "Content");

Asynchronous

Backend.Question.SendQuestion(QuestionType.Account, "Title","Content", callback => {

});

SendQueue

SendQueue.Enqueue(Backend.Question.SendQuestion,QuestionType.Account "Title","Content", callback => {
});

Return casess

Success casess

statusCode : 204