Example #1
0
        public ResultDTO AddNotification([System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] NotificationDTO notification, [System.Xml.Serialization.XmlElementAttribute(IsNullable = true)] string hash)
        {
            object[] results = this.Invoke("AddNotification", new object[] {
                notification,
                hash
            });

            return((ResultDTO)(results[0]));
        }
Example #2
0
 /// <remarks/>
 public void AddNotificationAsync(NotificationDTO notification, string hash, object userState)
 {
     if ((this.AddNotificationOperationCompleted == null))
     {
         this.AddNotificationOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddNotificationOperationCompleted);
     }
     this.InvokeAsync("AddNotification", new object[] {
         notification,
         hash
     }, this.AddNotificationOperationCompleted, userState);
 }
Example #3
0
 /// <remarks/>
 public void AddNotificationAsync(NotificationDTO notification, string hash)
 {
     this.AddNotificationAsync(notification, hash, null);
 }