GroupMeMessages CreateMessage Method CkSoftware GroupMe SDK - Documentation
Creates a new message in this group.

Namespace: CkSoftware.GroupMe.Sdk.Messaging
Assembly: CkSoftware.GroupMe.Sdk.Messaging (in CkSoftware.GroupMe.Sdk.Messaging.dll) Version: 1.0.1.35397 (1.0.1.0)
Syntax

public Task<GroupMeMessageData> CreateMessage(
	string sourceGuid,
	string text = null,
	IEnumerable<GroupMeAttachmentBase> attachments = null
)

Parameters

sourceGuid
Type: System String
The sourceGuid of this message. This is an identifier of this message and should be unique, to correctly identify duplicate submits.
text (Optional)
Type: System String
The text to submit (optional if there is an attachment).
attachments (Optional)
Type: System.Collections.Generic IEnumerable GroupMeAttachmentBase 
A list of attachments to add to this mesasge.

Return Value

Type: Task GroupMeMessageData 
The created message-data.
See Also