예제 #1
0
 /// <remarks/>
 public void QueueAddIncidentAsync(AddIncidentRequest req) {
     this.QueueAddIncidentAsync(req, null);
 }
예제 #2
0
 /// <remarks/>
 public void QueueAddIncidentAsync(AddIncidentRequest req, object userState) {
     if ((this.QueueAddIncidentOperationCompleted == null)) {
         this.QueueAddIncidentOperationCompleted = new System.Threading.SendOrPostCallback(this.OnQueueAddIncidentOperationCompleted);
     }
     this.InvokeAsync("QueueAddIncident", new object[] {
                 req}, this.QueueAddIncidentOperationCompleted, userState);
 }
예제 #3
0
 public QueueAddIncidentResponse QueueAddIncident(AddIncidentRequest req) {
     object[] results = this.Invoke("QueueAddIncident", new object[] {
                 req});
     return ((QueueAddIncidentResponse)(results[0]));
 }