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.2+447d1d590e6726b7881f750a0a0e42908f3e417e
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