Click or drag to resize

MessageClientPostToSpace Method

Posts a plain text message, and optionally, mentions group and a media content attachment, to a space by space Id.

Namespace:  WebexSDK
Assembly:  WebexSDK (in WebexSDK.dll) Version: 0.1.0.0 (0.1.0.0)
Syntax
C#
public void PostToSpace(
	string spaceId,
	string text,
	List<Mention> mentions = null,
	List<LocalFile> files = null,
	Action<WebexApiEventArgs<Message>> completionHandler = null
)

Parameters

spaceId
Type: SystemString
The identifier of the space where the message is to be posted.
text
Type: SystemString
The plain text message to be posted to the space.
mentions (Optional)
Type: System.Collections.GenericListMention
The mention items to be posted to the space.
files (Optional)
Type: System.Collections.GenericListLocalFile
Local file objects to be uploaded to the space.
completionHandler (Optional)
Type: SystemActionWebexApiEventArgsMessage
The completion event handler.
Remarks
Since: 0.1.0
See Also