コード例 #1
0
 public virtual async Task Invite(Guid chatId, Guid userId, ChatParticipantType chatParticipantType, string style, string metadata)
 {
     await ChatParticipantsService.Invite(CurrentUserId, chatId, userId, chatParticipantType, style, metadata);
 }
コード例 #2
0
ファイル: ChatParticipantsHub.cs プロジェクト: K1vs/DotChat
 public virtual async Task Invite(Guid chatId, Guid userId, ChatParticipantType chatParticipantType)
 {
     await ChatParticipantsService.Invite(CurrentUserId, chatId, userId, chatParticipantType, null, null);
 }