Click or drag to resize

BoardNewTopicAsync(String, String, CancellationToken) 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.4+fbadc980737ddc9bb67116900ecad57f84a0b241
Syntax
public Task<Topic> NewTopicAsync(
	string topicTitle,
	string topicContent,
	CancellationToken cancellationToken
)

Parameters

topicTitle  String
Title of the new topic, in wikitext format.
topicContent  String
First post content of the new topic, in wikitext format.
cancellationToken  CancellationToken
The token used to cancel the operation.

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