Example #1
0
 /// <summary>
 /// Initiates a public or private channel-based conversation.
 /// </summary>
 public Task <ConversationResponse> CreateAsync(ChannelToCreate channelToCreate)
 => SendPostFormUrlEncodedAsync <ChannelToCreate, ConversationResponse>("create", channelToCreate);
Example #2
0
 /// <inheritdoc cref="ConversationsClient.CreateAsync(ChannelToCreate)"/>
 public Task <ConversationResponse> CreateChannelAsync(ChannelToCreate channelToCreate)
 => Conversations.CreateAsync(channelToCreate);