Ejemplo n.º 1
0
 /// <remarks/>
 public void GetIncidentAsync(GetIncidentReq req) {
     this.GetIncidentAsync(req, null);
 }
Ejemplo n.º 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);
 }
Ejemplo n.º 3
0
 public GetIncidentResponse GetIncident(GetIncidentReq req) {
     object[] results = this.Invoke("GetIncident", new object[] {
                 req});
     return ((GetIncidentResponse)(results[0]));
 }