예제 #1
0
 /// <summary>
 /// 发送弹窗
 /// </summary>
 /// <param name="Receiver">接收者,支持“,”分割,支持All</param>
 /// <param name="Time">间隔时间,单位:毫秒</param>
 private void Action_SendVibration(String Receiver, Int32?Time = null)
 {
     if (Time == null)
     {
         Time = 200;
     }
     ApiPlugin.SendVibration(Receiver, (int)Time);
 }