SendQuestion
public BackendReturnObject SendQuestion(QuestionType questionType, string title, string content);
Parameters
Value | Type | Description |
---|---|---|
questionType | QuestionType | Inquiry type |
title | string | Inquiry title |
content | string | Inquiry content |
QuestionType
Type | Description |
---|---|
QuestionType.Account | Account |
QuestionType.Payment | Payment |
QuestionType.Restore | Recovery |
QuestionType.GameQuestion | Game Inquiry |
QuestionType.Report | Report |
QuestionType.SetupOrExecute | Install/Execute |
QuestionType.Bug | Bugs |
QuestionType.Event | Events |
QuestionType.Suggestions | Suggestions |
QuestionType.Etc | Other |
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