Example #1
0
 /// <remarks/>
 public void GetIncidentAsync(GetIncidentReq req) {
     this.GetIncidentAsync(req, null);
 }
Example #2
0
 /// <remarks/>
 public void GetIncidentAsync(GetIncidentReq req, object userState) {
     if ((this.GetIncidentOperationCompleted == null)) {
         this.GetIncidentOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetIncidentOperationCompleted);
     }
     this.InvokeAsync("GetIncident", new object[] {
                 req}, this.GetIncidentOperationCompleted, userState);
 }
Example #3
0
 public GetIncidentResponse GetIncident(GetIncidentReq req) {
     object[] results = this.Invoke("GetIncident", new object[] {
                 req});
     return ((GetIncidentResponse)(results[0]));
 }