Esempio n. 1
0
 /// <remarks/>
 public void CreateOrUpdateSurveyAsync(string ticket, TransitSurvey survey) {
     this.CreateOrUpdateSurveyAsync(ticket, survey, null);
 }
Esempio n. 2
0
 /// <remarks/>
 public void CreateOrUpdateSurveyAsync(string ticket, TransitSurvey survey, object userState) {
     if ((this.CreateOrUpdateSurveyOperationCompleted == null)) {
         this.CreateOrUpdateSurveyOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateOrUpdateSurveyOperationCompleted);
     }
     this.InvokeAsync("CreateOrUpdateSurvey", new object[] {
                 ticket,
                 survey}, this.CreateOrUpdateSurveyOperationCompleted, userState);
 }
Esempio n. 3
0
 public int CreateOrUpdateSurvey(string ticket, TransitSurvey survey) {
     object[] results = this.Invoke("CreateOrUpdateSurvey", new object[] {
                 ticket,
                 survey});
     return ((int)(results[0]));
 }