public SlackChatMessageResult PostMessage(string channel, stringtext, ICollection<SlackChatMessageAttachment> messageAttachments, SlackChatMessageSettings messageSettings)
Examples
Information("Sending message to Slack...");
var settings = new SlackChatMessageSettings { Token = "token" };
var postMessageResult = Slack.Chat.PostMessage(
"Cake",
"It's not a party without Cake!",
newnew [] { new SlackChatMessageAttachment() },
settings
);
if(postMessageResult.Ok)
{
Information("Message {0} successfully sent.", postMessageResult.TimeStamp);
}
else
{
Error("Failed to send message: {0}.", postMessageResult.Error);
}
Attributes
Type
Description
CakeAliasCategoryAttribute
Parameters
Name
Type
Description
channel
string
Channel to send message to. Can be a public channel, private group or IM channel. Can be an encoded ID, or a name.
text
string
Text of the message to send. For message formatting see Formatting | Slack