Esempio n. 1
0
 /// <remarks/>
 public void Notify_SendAsync(int userID, string notifyType, string content, string datas, NotifyActionProxy[] actions, string keyword) {
     this.Notify_SendAsync(userID, notifyType, content, datas, actions, keyword, null);
 }
Esempio n. 2
0
 /// <remarks/>
 public void Notify_SendAsync(int userID, string notifyType, string content, string datas, NotifyActionProxy[] actions, string keyword, object userState) {
     if ((this.Notify_SendOperationCompleted == null)) {
         this.Notify_SendOperationCompleted = new System.Threading.SendOrPostCallback(this.OnNotify_SendOperationCompleted);
     }
     this.InvokeAsync("Notify_Send", new object[] {
                 userID,
                 notifyType,
                 content,
                 datas,
                 actions,
                 keyword}, this.Notify_SendOperationCompleted, userState);
 }
Esempio n. 3
0
 public bool Notify_Send(int userID, string notifyType, string content, string datas, NotifyActionProxy[] actions, string keyword) {
     object[] results = this.Invoke("Notify_Send", new object[] {
                 userID,
                 notifyType,
                 content,
                 datas,
                 actions,
                 keyword});
     return ((bool)(results[0]));
 }