Click or drag to resize

BoardNewTopicAsync(String, String) Method

This is preliminary documentation and is subject to change.

Creates a new topic on the current board.

Namespace: WikiClientLibrary.Flow
Assembly: WikiClientLibrary.Flow (in WikiClientLibrary.Flow.dll) Version: 0.9.0-int.3+0a73c45f0c78941900e328c6c6b819597b665e00
Syntax
public Task<Topic> NewTopicAsync(
	string topicTitle,
	string topicContent
)

Parameters

topicTitle  String
Title of the new topic, in wikitext format.
topicContent  String
First post content of the new topic, in wikitext format.

Return Value

TaskTopic
A task that returns the newly-created topic when succeeds. The instance only contains the workflow ID, so you may need to call RefreshAsync if you want to query more information about it.
See Also