leancloud / realtime-SDK-dotNET

LeanCloud Instants Messaging SDK for Portable & Unity & .NET Core written by c#
Apache License 2.0
13 stars 9 forks source link

InviteAsync 允许传入 List 对象 #153

Open nicecui opened 5 years ago

nicecui commented 5 years ago

目前的代码只能一个人一个人的邀请加入对话:

await tom.InviteAsync(conversation, "Mary");

需要支持一批人加入对话:

var memberList = new List<string>() { "Marry", "Bob" };
await tom.InviteAsync(conversation, memberList);