示例#1
0
 /// <remarks/>
 public void CreateOrUpdateSurveyQuestionAsync(string ticket, TransitSurveyQuestion surveyquestion) {
     this.CreateOrUpdateSurveyQuestionAsync(ticket, surveyquestion, null);
 }
示例#2
0
 /// <remarks/>
 public void CreateOrUpdateSurveyQuestionAsync(string ticket, TransitSurveyQuestion surveyquestion, object userState) {
     if ((this.CreateOrUpdateSurveyQuestionOperationCompleted == null)) {
         this.CreateOrUpdateSurveyQuestionOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateOrUpdateSurveyQuestionOperationCompleted);
     }
     this.InvokeAsync("CreateOrUpdateSurveyQuestion", new object[] {
                 ticket,
                 surveyquestion}, this.CreateOrUpdateSurveyQuestionOperationCompleted, userState);
 }
示例#3
0
 public int CreateOrUpdateSurveyQuestion(string ticket, TransitSurveyQuestion surveyquestion) {
     object[] results = this.Invoke("CreateOrUpdateSurveyQuestion", new object[] {
                 ticket,
                 surveyquestion});
     return ((int)(results[0]));
 }