コード例 #1
0
 public void SendMessageInDialog(ICall dialog, string body)
 {
     Helper.GuardNotNull(dialog);
     Helper.GuardPositiveInt(dialog.Id);
     _callApi.SendIm(dialog.Id, "plain/text", body);
 }